/* progress Bar */

.page-load-progress-bar {
    height: 5px;
    position: relative;
    background: #f3efe6;
    overflow: hidden;
}

.page-load-progress-bar span {
    display: block;
    height: 100%;
}

.page-load-progress {
    background-color: #E9D8A6;
    animation: progressBar 10s ease-in-out;
    animation-fill-mode: both;
}

@keyframes progressBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.paused {
    animation-duration: 0s
}


/* Обёртка таблицы */
.data-table {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    background: white;
    overflow: hidden;
    white-space: nowrap;

    box-shadow: var(--base-box-shadow);
    border-radius: var(--base-border-radius);
}

/* Заголовок и строки */
.table-header,
.table-row {
    display: flex;
    flex-direction: row;
}

.table-header {
    background: var(--background-color-base);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color-base);
}

.table-row {
    border-bottom: 1px solid var(--border-color-base);
    transition: #eee 0.2s;
    flex-wrap: wrap;
}

.table-row:hover {
    background: #f9f9f9;
}

/* Ячейки */
.cell {
    flex: 1;
    padding: var(--base-padding);
    border-right: 1px solid var(--border-color-base);
    display: flex;
    align-items: center;
}

.cell:last-child {
    border-right: none;
    justify-content: flex-start;
    /* gap: 8px; */
}