/* css/index.css */
.weather-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa, #ffffff);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    margin-bottom: 20px; /* Нижний отступ */
}

.weather-container:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(5, auto); /* Автоматическая ширина колонок */
    gap: 20px 20px; /* column-gap и row-gap */
    margin-top: 20px;
    justify-content: center; /* Вернули центрирование */
}

.region-column {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
    text-align: left; /* Выравнивание текста влево */
    transition: transform 0.2s ease;
}

.region-column:hover {
    transform: translateY(-4px);
}

/* 11-й регион выравниваем влево (первая позиция в своей строке) */
.region-column:nth-child(11) {
    grid-column: 1 / 2;
}

.region-link {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(90deg, #00c4cc, #4a90e2);
    text-decoration: none;
    padding: 8px 10px; /* Отступ справа 10px перед бордером */
    margin: 0;
    width: auto; /* Автоматическая ширина под контент */
    border-radius: 6px 6px 0 0; /* Скругление только сверху */
    transition: background 0.3s ease;
    text-align: left; /* Убедимся, что текст влево */
}

.region-link:hover {
    background: linear-gradient(90deg, #009ba7, #357abd);
}

.districts-list {
    list-style: none;
    padding: 0;
    margin-top: 6px;
    margin-bottom: 6px;
}

.district-link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
    text-align: left; /* Выравнивание текста влево */
}

.district-link:hover {
    color: #4a90e2;
}

.see-all {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #4a90e2;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    text-align: left; /* Выравнивание текста влево */
}

.see-all:hover {
    color: #357abd;
    text-decoration: underline;
}

/* Отступ между .weather-container и футером */
.weather-container + footer {
    margin-top: 40px; /* Увеличен для зазора */
}

@media (max-width: 768px) {
    .weather-container {
        max-width: calc(100% - 40px);
        padding: 15px;
    }

    .regions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .region-column:nth-child(11) {
        grid-column: auto;
    }

    .region-link {
        font-size: 18px;
        padding: 6px 8px;
    }

    .district-link {
        font-size: 13px;
    }

    .see-all {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .weather-container {
        margin: 15px;
        padding: 10px;
    }

    .regions-grid {
        gap: 10px;
    }

    .region-link {
        font-size: 16px;
        padding: 5px 6px;
    }

    .district-link {
        font-size: 12px;
    }

    .see-all {
        font-size: 10px;
    }
}