/* Справочник оборудования — единый стиль с «Расчёты» и «Личный кабинет» */

/* Карточка-контейнер: табы + таблица + кнопки */
.page-equipment-catalog .equipment-catalog-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 28px 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Табы — аккуратные вкладки в стиле приложения */
.page-equipment-catalog .equipment-catalog-card .tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    flex-wrap: wrap;
}

.page-equipment-catalog .equipment-catalog-card .tab-button {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    white-space: nowrap;
    margin-bottom: -2px;
}

.page-equipment-catalog .equipment-catalog-card .tab-button:hover {
    color: #108FBA;
    background: #f8fafc;
}

.page-equipment-catalog .equipment-catalog-card .tab-button.active {
    color: #108FBA;
    border-bottom-color: #108FBA;
    font-weight: 600;
}

/* Контейнер таблицы — без горизонтального скролла, колонки скрываются по @media */
.page-equipment-catalog .equipment-catalog-card .table-responsive {
    overflow-x: hidden;
    margin: 0 0 8px 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.page-equipment-catalog .equipment-catalog-card .table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: transparent;
    table-layout: fixed;
}

/* Текст в ячейках — ellipsis, чтобы не раздувать ширину */
.page-equipment-catalog .equipment-catalog-card .table td.col-article,
.page-equipment-catalog .equipment-catalog-card .table td.col-manufacturer,
.page-equipment-catalog .equipment-catalog-card .table td.col-model,
.page-equipment-catalog .equipment-catalog-card .table td.col-name,
.page-equipment-catalog .equipment-catalog-card .table td.col-type,
.page-equipment-catalog .equipment-catalog-card .table td.col-heater-type,
.page-equipment-catalog .equipment-catalog-card .table td.col-supplier,
.page-equipment-catalog .equipment-catalog-card .table td.col-diameter-from,
.page-equipment-catalog .equipment-catalog-card .table td.col-diameter-to {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.page-equipment-catalog .equipment-catalog-card .table th.col-article {
    width: 80px;
    max-width: 80px;
}
.page-equipment-catalog .equipment-catalog-card .table td.col-article {
    max-width: 80px;
}
.page-equipment-catalog .equipment-catalog-card .table.table-diffusers th.col-article,
.page-equipment-catalog .equipment-catalog-card .table.table-diffusers td.col-article {
    width: 80px;
    max-width: 80px;
}

.page-equipment-catalog .equipment-catalog-card .table thead th {
    background: #f8fafc;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #e2e8f0;
    white-space: normal;
    line-height: 1.3;
    word-break: break-word;
}
.page-equipment-catalog .equipment-catalog-card .table thead th.col-manufacturer,
.page-equipment-catalog .equipment-catalog-card .table thead th.col-model,
.page-equipment-catalog .equipment-catalog-card .table thead th.col-name {
    width: 12%;
}
.page-equipment-catalog .equipment-catalog-card .table thead th.col-actions {
    width: 90px;
}

.page-equipment-catalog .equipment-catalog-card .table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    line-height: 1.45;
    vertical-align: middle;
}

.page-equipment-catalog .equipment-catalog-card .table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.page-equipment-catalog .equipment-catalog-card .table tbody tr:hover {
    background: #f1f5f9;
}

.page-equipment-catalog .equipment-catalog-card .table th.number,
.page-equipment-catalog .equipment-catalog-card .table td.number {
    text-align: right;
    white-space: nowrap;
}

/* Неактивные строки */
.page-equipment-catalog .equipment-catalog-card .table tbody tr.inactive-row {
    opacity: 0.75;
    background: #f8fafc;
}

.page-equipment-catalog .equipment-catalog-card .table tbody tr.inactive-row:hover {
    background: #f1f5f9;
}

/* Переключатель статуса активен/неактивен в таблице ПВУ */
.page-equipment-catalog .equipment-catalog-card .table .status-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s, transform 0.15s;
}
.page-equipment-catalog .equipment-catalog-card .table .status-toggle:hover {
    transform: scale(1.1);
}
.page-equipment-catalog .equipment-catalog-card .table .status-toggle.status-active {
    color: #16a34a;
    font-weight: 700;
}
.page-equipment-catalog .equipment-catalog-card .table .status-toggle.status-active:hover {
    background: rgba(22, 163, 74, 0.12);
}
.page-equipment-catalog .equipment-catalog-card .table .status-toggle.status-inactive {
    color: #dc2626;
    font-weight: 700;
}
.page-equipment-catalog .equipment-catalog-card .table .status-toggle.status-inactive:hover {
    background: rgba(220, 38, 38, 0.1);
}

/* Колонка «Действия» — иконки-кнопки (карандаш, корзина) */
.page-equipment-catalog .equipment-catalog-card .table td.col-actions {
    white-space: nowrap;
    width: 1%;
}

.page-equipment-catalog .equipment-catalog-card .table .btn-action-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.page-equipment-catalog .equipment-catalog-card .table .btn-action-icon:last-child {
    margin-right: 0;
}
.page-equipment-catalog .equipment-catalog-card .table .btn-action-icon:not(.btn-danger) {
    background: #f1f5f9;
    color: #475569;
}
.page-equipment-catalog .equipment-catalog-card .table .btn-action-icon:not(.btn-danger):hover {
    background: #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.page-equipment-catalog .equipment-catalog-card .table .btn-action-icon.btn-danger {
    background: #fef2f2;
    color: #b91c1c;
}
.page-equipment-catalog .equipment-catalog-card .table .btn-action-icon.btn-danger:hover {
    background: #fee2e2;
    box-shadow: 0 1px 3px rgba(185, 28, 28, 0.15);
}
.page-equipment-catalog .equipment-catalog-card .table .btn-action-icon svg {
    display: block;
}

/* ——— Адаптивное скрытие колонок (убираем горизонтальный скролл) ——— */
@media (max-width: 1200px) {
    /* ПВУ: скрыть второстепенные */
    .page-equipment-catalog .equipment-catalog-card .table .col-power,
    .page-equipment-catalog .equipment-catalog-card .table .col-noise,
    .page-equipment-catalog .equipment-catalog-card .table .col-pressure,
    .page-equipment-catalog .equipment-catalog-card .table .col-supply {
        display: none !important;
    }
    /* Диффузоры: скрыть расход и шум */
    .page-equipment-catalog .equipment-catalog-card .table-diffusers .col-diff-airflow-min,
    .page-equipment-catalog .equipment-catalog-card .table-diffusers .col-diff-airflow-max,
    .page-equipment-catalog .equipment-catalog-card .table-diffusers .col-diff-noise {
        display: none !important;
    }
    /* Кабели: скрыть жилы и напряжение */
    .page-equipment-catalog .equipment-catalog-card .table .col-cores,
    .page-equipment-catalog .equipment-catalog-card .table .col-voltage {
        display: none !important;
    }
}

@media (max-width: 992px) {
    /* ПВУ и др.: скрыть тип и наценку */
    .page-equipment-catalog .equipment-catalog-card .table .col-type,
    .page-equipment-catalog .equipment-catalog-card .table .col-markup {
        display: none !important;
    }
    /* Диффузоры: скрыть тип монтажа и диаметр */
    .page-equipment-catalog .equipment-catalog-card .table-diffusers .col-diff-mount,
    .page-equipment-catalog .equipment-catalog-card .table-diffusers .col-diff-diameter {
        display: none !important;
    }
    /* Кабели: скрыть сечение */
    .page-equipment-catalog .equipment-catalog-card .table .col-section {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* ПВУ: скрыть статус */
    .page-equipment-catalog .equipment-catalog-card .table .col-status {
        display: none !important;
    }
}

/* Нижняя панель действий — только иконки, без фона на всю ширину */
.page-equipment-catalog .equipment-actions {
    position: sticky;
    bottom: 16px;
    z-index: 10;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.page-equipment-catalog .equipment-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}
.page-equipment-catalog .equipment-actions .btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.page-equipment-catalog .equipment-actions .btn-icon-only {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
}
.page-equipment-catalog .equipment-actions .btn-icon-only img {
    display: block;
}

.page-equipment-catalog .equipment-actions .btn-primary {
    border-radius: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #108FBA, #0d7a9e);
    border: none;
    box-shadow: 0 4px 12px rgba(16, 143, 186, 0.25);
    transition: box-shadow 0.2s;
    color: #fff;
}
.page-equipment-catalog .equipment-actions .btn-primary:hover {
    box-shadow: 0 6px 16px rgba(16, 143, 186, 0.35);
}
.page-equipment-catalog .equipment-actions .btn-primary img {
    filter: brightness(0) invert(1);
}

.page-equipment-catalog .equipment-actions .btn-warning {
    border-radius: 12px;
    font-weight: 500;
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
    transition: background 0.2s, box-shadow 0.2s;
}
.page-equipment-catalog .equipment-actions .btn-warning:hover {
    background: #fde68a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

#delete-inactive-btn {
    display: none;
}

/* Отступ снизу, чтобы последняя строка таблицы не уходила под sticky-панель */
.page-equipment-catalog .dashboard-content-inner {
    padding-bottom: 100px;
}

/* Состояния загрузки и ошибки внутри карточки */
.page-equipment-catalog .equipment-catalog-card .loading,
.page-equipment-catalog .equipment-catalog-card .error {
    padding: 24px;
    font-family: Arial, sans-serif;
    color: #64748b;
}

/* ——— Блок поиска/фильтра/сортировки ПВУ (отдельная карточка, как на странице «Расчёты») ——— */
.page-equipment-catalog .pvu-filters-panel {
    padding: 0;
    margin: 0 0 24px 0;
    background: transparent;
    border: none;
}

.page-equipment-catalog .equipment-filters-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}

.pvu-toolbar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pvu-toolbar-row-search {
    flex: 1;
    min-width: 200px;
}
.pvu-toolbar-row-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.pvu-toolbar-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-right: 6px;
    white-space: nowrap;
}
.pvu-search-input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    border-radius: 11px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    background: #fff;
}
.pvu-search-input:focus {
    outline: none;
    border-color: #108FBA;
    box-shadow: 0 0 0 3px rgba(16, 143, 186, 0.12);
}
.pvu-select {
    height: 44px;
    padding: 0 14px;
    border-radius: 11px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    background: #fff;
    min-width: 180px;
}
.pvu-btn {
    height: 44px;
    padding: 0 18px;
    border-radius: 11px;
    border: 1px solid #d1d5db;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}
.pvu-btn:hover {
    background: #f3f4f6;
}
.pvu-mobile-only { display: none !important; }
.pvu-desktop-only { display: block; }

/* Модальное окно фильтра ПВУ */
.pvu-filter-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
}
.pvu-filter-modal.open {
    visibility: visible;
    opacity: 1;
}
.pvu-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}
.pvu-filter-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
.pvu-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
}
.pvu-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}
.pvu-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}
.pvu-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}
.pvu-filter-section {
    margin-bottom: 20px;
}
.pvu-filter-section:last-child {
    margin-bottom: 0;
}
.pvu-filter-section-title {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}
.pvu-filter-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pvu-filter-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
}
.pvu-filter-checkbox-item input {
    width: 18px;
    height: 18px;
}
.pvu-filter-more {
    margin-top: 8px;
    padding: 8px 0;
    background: none;
    border: none;
    font-size: 14px;
    color: #108FBA;
    cursor: pointer;
}
.pvu-filter-range {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pvu-filter-range-value {
    font-size: 13px;
    color: #64748b;
}
.pvu-range {
    width: 100%;
    height: 8px;
    accent-color: #108FBA;
}
.pvu-modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
}

/* Нижняя панель сортировки ПВУ (на мобилке 30% экрана) */
.pvu-sort-sheet {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
    pointer-events: none;
}
.pvu-sort-sheet.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.pvu-sort-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}
.pvu-sort-sheet-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    max-height: 40vh;
    display: flex;
    flex-direction: column;
}
.pvu-sort-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
}
.pvu-sort-sheet-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}
.pvu-sort-sheet-close {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
}
.pvu-sort-options {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    overflow-y: auto;
}
.pvu-sort-options li {
    padding: 14px 20px;
    font-size: 15px;
    color: #334155;
    cursor: pointer;
}
.pvu-sort-options li:hover,
.pvu-sort-options li.selected {
    background: #f1f5f9;
    color: #108FBA;
}

/* Мобильная адаптация: табы — горизонтальный скролл, таблица — карточки, sticky-панель */
@media (max-width: 768px) {
    .pvu-mobile-only { display: inline-flex !important; }
    .pvu-desktop-only { display: none !important; }

    .page-equipment-catalog .pvu-filters-panel {
        margin-bottom: 16px;
    }
    .page-equipment-catalog .equipment-filters-card {
        padding: 18px 20px;
        border-radius: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .pvu-toolbar-row-search {
        min-width: 0;
    }
    .pvu-toolbar-row-controls {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: stretch;
    }
    .pvu-toolbar-group {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }
    .pvu-toolbar-group .pvu-btn {
        width: 100%;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }

    /* Модальное окно фильтра — на весь экран */
    .pvu-filter-modal.open {
        padding: 0;
        align-items: stretch;
    }
    .pvu-filter-modal-content {
        max-width: none;
        max-height: none;
        border-radius: 0;
    }
    .pvu-modal-body {
        padding: 16px;
    }
    .pvu-modal-footer {
        padding: 16px;
    }

    /* Панель сортировки — 30% экрана снизу */
    .pvu-sort-sheet-content {
        max-height: 30vh;
        border-radius: 16px 16px 0 0;
    }
    .pvu-sort-options li {
        padding: 14px 20px;
    }

    .page-equipment-catalog .equipment-catalog-card {
        padding: 18px 16px 20px;
        margin-bottom: 16px;
    }

    /* Табы: скроллимая полоса без переноса */
    .page-equipment-catalog .equipment-catalog-card .tabs {
        margin-bottom: 16px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-bottom: 2px solid #e2e8f0;
    }
    .page-equipment-catalog .equipment-catalog-card .tabs::-webkit-scrollbar {
        display: none;
    }
    .page-equipment-catalog .equipment-catalog-card .tab-button {
        flex: 0 0 auto;
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Карточный вид таблицы: каждая строка = карточка с data-label */
    .page-equipment-catalog .equipment-catalog-card .table-responsive {
        overflow: visible;
        border: none;
    }
    .page-equipment-catalog .equipment-catalog-card .table {
        display: block;
    }
    .page-equipment-catalog .equipment-catalog-card .table thead {
        display: none;
    }
    .page-equipment-catalog .equipment-catalog-card .table tbody {
        display: block;
    }
    .page-equipment-catalog .equipment-catalog-card .table tbody tr {
        display: block;
        padding: 16px;
        margin-bottom: 12px;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    }
    .page-equipment-catalog .equipment-catalog-card .table tbody tr:last-child {
        margin-bottom: 0;
    }
    .page-equipment-catalog .equipment-catalog-card .table tbody tr.inactive-row {
        opacity: 0.85;
        background: #f8fafc;
    }
    .page-equipment-catalog .equipment-catalog-card .table tbody td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 8px 0;
        border: none;
        font-size: 14px;
        line-height: 1.4;
    }
    .page-equipment-catalog .equipment-catalog-card .table tbody td:first-child {
        padding-top: 0;
    }
    .page-equipment-catalog .equipment-catalog-card .table tbody td:last-child {
        padding-bottom: 0;
        border-top: 1px solid #f1f5f9;
        margin-top: 4px;
        justify-content: flex-start;
    }
    .page-equipment-catalog .equipment-catalog-card .table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #475569;
        font-size: 12px;
        flex-shrink: 0;
    }
    .page-equipment-catalog .equipment-catalog-card .table tbody td.col-actions::before {
        display: none;
    }
    .page-equipment-catalog .equipment-catalog-card .table tbody td.number {
        justify-content: space-between;
    }
    .page-equipment-catalog .equipment-catalog-card .table .btn-action-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        margin-right: 8px;
    }
    .page-equipment-catalog .equipment-catalog-card .table .status-toggle {
        width: 44px;
        height: 44px;
    }

    /* Sticky-панель: не перекрывает контент, safe-area, аккуратный вид */
    .page-equipment-catalog .equipment-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        padding: 12px 16px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        background: #fff;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
        z-index: 20;
        gap: 10px;
        flex-wrap: wrap;
    }
    .page-equipment-catalog .equipment-actions .btn-icon-only {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    .page-equipment-catalog .dashboard-content-inner {
        padding-bottom: 88px;
        padding-bottom: calc(88px + env(safe-area-inset-bottom));
    }
}

/* Модальное окно импорта из Excel */
.excel-import-modal-content .modal-body { max-height: 70vh; overflow-y: auto; }
.excel-import-hint { color: #64748b; margin-bottom: 12px; font-size: 14px; }
.excel-import-section-block { margin-bottom: 16px; padding: 12px; border: 1px solid #e2e8f0; border-radius: 8px; background: #f8fafc; }
.excel-import-section-check { display: block; font-weight: 600; margin-bottom: 8px; cursor: pointer; }
.excel-import-section-mapping { margin-top: 10px; padding-top: 10px; border-top: 1px solid #e2e8f0; }
.excel-import-section-mapping label { margin-right: 12px; font-size: 13px; }
.excel-import-sheet-name { width: 120px; padding: 4px 8px; margin-left: 4px; }
.excel-import-mapping-table { width: 100%; margin-top: 8px; font-size: 13px; border-collapse: collapse; }
.excel-import-mapping-table td { padding: 4px 8px 4px 0; vertical-align: middle; }
.excel-import-mapping-table td:first-child { color: #475569; }
.excel-import-mapping-table select,
.excel-import-mapping-table input.excel-import-col { min-width: 56px; padding: 4px 6px; }
.excel-import-file-row { margin: 16px 0; }
.excel-import-file-name { margin-left: 10px; color: #64748b; font-size: 13px; }
.excel-import-config-actions { margin-bottom: 12px; }
.excel-import-config-actions .btn { margin-right: 8px; margin-bottom: 4px; }
.excel-import-result { margin-top: 12px; padding: 12px; background: #f1f5f9; border-radius: 8px; font-size: 13px; line-height: 1.5; }
.excel-import-result strong { color: #0f172a; }
.required { color: #dc2626; }
