body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0px 10%;
    background-color: #f5f5f5;
    color: #333;
    font-size: 11px;
}

@media (max-width: 768px) {
    body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0px 6%;
    background-color: #f5f5f5;
    color: #333;
    font-size: 11px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* header */

.sticky-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: sticky;
    top: 0;
    background: #f5f5f5;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.header-left, .header-center, .header-right {
    display: flex;
    align-items: center;
}

/* Левая колонка (25%) */
.header-left {
    width: 25%;
    justify-content: flex-start;
    gap: 10px;
}

/* Центральная колонка (50%) */
.header-center {
    width: 50%;
    justify-content: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.header-logo {
    height: 65px;
    width: auto;
}

.logo-text {
    font-weight: bold;
    font-size: 14px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -30px;
}

/* Правая колонка (25%) */
.header-right {
    display: flex;
    gap: 10px; /* Расстояние между кнопками */
    align-items: center;
}

/* Кнопки - одинакового размера */
.filter-btn, .logout-btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 100px; /* Фиксированная минимальная ширина */
    text-align: center;
    box-sizing: border-box;
    display: inline-block; /* Для правильного выравнивания */
    width: 120px !important; /* Фиксированная ширина */
    height: 40px !important;

}

.filter-btn {
    background: #3498db;
    color: white;
    border: none;
}

.filter-btn:hover {
    background: #2980b9;
}

.logout-btn {
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border: none; /* Добавляем для единообразия */
}

.logout-btn:hover {
    background: #c0392b;
}

/* Контейнер для кнопок - выравнивание */
.header-right {
    display: flex;
    gap: 10px; /* Расстояние между кнопками */
    align-items: center;
}

/* Адаптивность */
@media (max-width: 768px) {
    .sticky-header {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-left, .header-center, .header-right {
        width: 100%;
        justify-content: center;
    }
    
    .header-left {
        order: 1;
    }
    
    .header-center {
        order: 3;
    }
    
    .header-right {
        order: 2;
    }
}

/* common */

h1, h2, h3 {
    color: #2c3e50;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #2980b9;
}

.logout {
    color: #e74c3c;
    text-decoration: none;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.logout:hover {
    background: #fce8e6;
    text-decoration: none;
}

.alert {
    padding: 10px 15px;
    background: #ffecec;
    border-left: 4px solid #e74c3c;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Таблица и связанные стили */
.table-wrapper {
    height: calc(100vh - 650px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: white;
}

.table-container {
    overflow-x: auto;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
    table-layout: fixed;
}

th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
    padding: 12px 15px;
    position: sticky !important;
    top: 0;
    text-align: left;
    border: none;
    z-index: 10;
}

th.sortable {
    position: sticky !important;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
}

th.sortable:after {
    position: sticky !important;
    content: " ↑↓";
    position: absolute;
    right: 8px;
    opacity: 0.5;
    font-size: 0.9em;
}

th.sortable.asc:after {
    position: sticky !important;
    content: " ↑";
    opacity: 1;
}

th.sortable.desc:after {
    position: sticky !important;
    content: " ↓";
    opacity: 1;
}

td {
    padding: 10px 15px;
    border-bottom: 1px solid #e0e9f2;
    vertical-align: top;
    word-wrap: break-word;
}

tr:not(:last-child) td {
    border-bottom: 1px solid #e0e9f2;
}

tr:hover td {
    background-color: #f8fafc;
}

.empty {
    color: #95a5a6;
    font-style: italic;
}

/* Метаданные и статистика */
.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}

.meta-info, .stats-info {
    flex: 1;
    min-width: 300px;
    margin: 10px;
    background-color: #f8fafc;
    padding: 10px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

/* Базовые стили сетки */
.meta-quarter {
    display: grid;
    gap: 15px;
    margin-top: 15px;
    /* По умолчанию 2 колонки для мобильных */
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Десктоп (1024px и выше) - 4 колонки */
@media (min-width: 1024px) {
    .meta-quarter {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.meta-half {
    display: grid;
    gap: 15px;
    margin-top: 15px;
    /* По умолчанию 1 колонка для мобильных */
    grid-template-columns: 1fr;
}

/* Планшеты и десктоп (768px и выше) - 2 колонки */
@media (min-width: 768px) {
    .meta-half {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Стили для элементов */
.meta-item {
    background-color: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #3498db;
    min-width: 0; /* Важно для корректного сжатия */
}

.meta-label {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meta-value {
    margin-top: 8px;
    font-size: 1.1em;
    color: #2c3e50;
    word-break: break-word;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .table-wrapper {
        height: auto;
        max-height: 50vh;
        margin: 20px -15px;
        border-radius: 0;
    }
    
    table {
        min-width: 100%;
    }
    
    th, td {
        padding: 8px 10px;
        width: 100px;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .meta-info, .stats-info {
        margin: 10px 0;
    }

    /*
    .meta-grid {
        grid-template-columns: 1fr;
    }
    */
}

.header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-tooltip {
    position: relative;
    display: inline-block;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    cursor: help;
    transition: all 0.3s;
}

.info-icon:hover {
    background-color: #0056b3;
}

.tooltip-text {
    visibility: hidden;
    width: 300px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 9999;
    top: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.info-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* CHARTS */

.charts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.chart-wrapper {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.chart-wrapper h3 {
    margin-top: 0;
    text-align: center;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .charts-container {
        grid-template-columns: 1fr;
    }
}

/* FILTER */

.columns-filter h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Стили для фильтра колонок */
.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.columns-filter {
    background: #f5f5f5;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

#applyColumns {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* Стили для сортировки */
th.sortable {
    cursor: pointer;
    position: relative;
}

th.sortable.asc::after {
    content: " ↑";
}

th.sortable.desc::after {
    content: " ↓";
}

/* Основные стили popup */
.filter-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
    touch-action: pan-y; /* Для корректной работы свайпа */
}

.filter-popup-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    width: 80%;
    max-width: 700px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-popup:hover {
    color: #333;
}

/* Сетка фильтров */
.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.filter-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f8f8f8;
    border-radius: 6px;
    margin: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.filter-grid label:hover {
    background: #e9e9e9;
}

/* Кнопки управления */
.filter-popup-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.filter-popup-buttons button {
    flex: 1;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

#resetColumns {
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}

#resetColumns:hover {
    background: #e0e0e0;
}

#applyColumns {
    background: #4CAF50;
    color: white;
    border: none;
}

#applyColumns:hover {
    background: #45a049;
}

/* Адаптация для мобильных */
/* Переписываем мобильную адаптацию фильтров */
@media (max-width: 768px) {
    .filter-popup-content {
        width: 95%;
        margin: 2% auto;
        padding: 15px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .filter-grid {
        /* Жесткая сетка 2 колонки */
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 8px;
    }
    
    .filter-grid label {
        display: flex;
        align-items: center;
        min-height: 40px; /* Фиксированная высота для тач-дружественности */
        padding: 8px;
        background: #f8f8f8;
        border-radius: 6px;
        margin: 0;
        font-size: 12px;
        box-sizing: border-box;
    }
    
    /* Особые стили для приоритетных чекбоксов */
    .filter-grid input[type="checkbox"][disabled] {
        opacity: 0.7;
        cursor: not-allowed;
        margin-right: 5px;
    }
    
    .filter-popup-buttons {
        display: grid !important;
        grid-template-columns: 1fr 1fr; /* Кнопки тоже в 2 колонки */
        gap: 10px;
        margin-top: 15px;
    }
}

/* Для совсем маленьких экранов - оставляем 2 колонки, но уменьшаем отступы */
@media (max-width: 480px) {
    .filter-grid {
        gap: 6px !important;
    }
    
    .filter-grid label {
        padding: 6px;
        font-size: 11px;
    }
    
    .filter-popup-buttons button {
        padding: 8px;
        font-size: 13px;
    }
}