.tags-input {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background: #fff;
}

.tags-input:focus-within {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.tags-input__list {
    display: contents;
}

.tags-input__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(92, 64, 51, 0.12);
    color: #5c4033;
    font-size: 0.875rem;
    line-height: 1.2;
}

.tags-input__remove {
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    font-size: 1rem;
}

.tags-input__field {
    flex: 1 1 140px;
    min-width: 120px;
    border: 0;
    outline: none;
    box-shadow: none;
    padding: 0.25rem 0;
    background: transparent;
}
