/* ===== ОБЩИЕ СТИЛИ ДЛЯ БОКОВЫХ ПАНЕЛЕЙ ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    height: 100%;
    width: 280px;
    background: #fff;
    box-shadow: 2px 0 12px rgba(0,0,0,0.18);
    padding: 20px 16px;
    z-index: 1300;
    transition: left 0.28s ease;
    overflow-y: auto;
    font-family: inherit;
    text-align: left;
}

.sidebar.open { left: 0; }

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top:0; right:0; bottom:0; left:0;
    background: rgba(0,0,0,0.35);
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1000;
    cursor: pointer;
}
.sidebar-overlay.open {
    display: block;
    opacity: 1;
}

/* Кнопка открытия панели */
.sidebar-toggle {
    display: flex;
    cursor: pointer;
    width: 118px;
    font-size: 14px;
    justify-content: center;
    margin-left: 2rem;
    margin-top: 0.3rem;
    font-family: inherit;
    border: 1px solid silver;
    border-radius: 0.3em;
    color: #36393f;
    background-color: white;
    padding: 0.3rem;
}

/* Кнопка закрытия */
.close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* Заголовок */
.sidebar h3 { margin-top: 4px; }
.Parametrs { display: inline-block; margin-bottom: 15px; }

/* Радиокнопки и чекбоксы */
.sidebar label,
.sidebar .filter-label { 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin: 4px 0;
    font-weight: 600;
    cursor: pointer;
}

.sidebar input[type="radio"],
.sidebar input[type="checkbox"] {
    margin: 0;
    width: 15px;
    height: 15px;
    accent-color: #1B6EF3;
    cursor: pointer;
}

/* Селекты */
.sidebar-select {
    width: 100%;
    margin: 6px 0 10px;
    padding: 6px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Отступ после первого блока */
.sidebar > div:first-of-type { margin-bottom: 20px; }

/* Блок выбора года */
.sidebar .year-controls { margin-top: 10px; }

/* ===== СПИСОК СРАВНЕНИЯ (sidebar_80) ===== */
#sidebar_80 .select-block { margin-bottom: 2px; } /* подтягиваем "Сравнить" к селекту */
#sidebar_80 .compare-toggle { margin-top: 2px; }

#sidebar_80 .compare-block {
    margin-top: 16px;      /* чуть ниже */
    padding-left: 1.2rem; /* сдвигаем внутрь */
}

#sidebar_80 .compare-block input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

#sidebar_80 .compare-block label {
    font-size: 15px;   /* увеличиваем названия национальностей */
    font-weight: normal; /* нормальный шрифт */
    line-height: 1.2;
}

/* Отступы между чекбоксами внутри блока */
#sidebar_80 .compare-block label:not(:last-child) { margin-bottom: 16px; }
/* Отступ сверху перед первым чекбоксом */
#sidebar_80 .compare-block label:first-child { margin-top: 16px; }

/* Адаптивность */
@media (max-width: 700px) {
    .sidebar { width: 75%; left: -80%; max-width: 320px; }
    .sidebar.open { left: 0; }
}