.wbk_extrasSelectorField {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wbk_extrasSelectorField__rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
}

.wbk_extrasSelectorField__row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.wbk_extrasSelectorField__select {
    flex: 1;
    min-width: 160px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #212121;
    background: #fff;

    &:focus {
        outline: none;
        border-color: #1f6763;
    }
}

.wbk_extrasSelectorField__qtyLabel {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wbk_extrasSelectorField__qtyCaption {
    font-size: 12px;
    color: #6b7280;
}

.wbk_extrasSelectorField__qtyInput {
    width: 72px;
    height: 44px;
    padding: 0 8px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;

    &:focus {
        outline: none;
        border-color: #1f6763;
    }

    &:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
}

.wbk_extrasSelectorField__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 44px;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;

    &:hover {
        border-color: #d1d5db;
        background: #fef2f2;
    }

    img {
        width: 16px;
        height: 16px;
    }
}

.wbk_extrasSelectorField__addButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #1f6763;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;

    &:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

    &:not(:disabled):hover {
        text-decoration: underline;
    }
}

.wbk_extrasSelectorField__plusIcon {
    width: 18px;
    height: 18px;
}

.wbk_extrasSelectorField__error {
    font-size: 13px;
    color: #b91c1c;
}
