.weather-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.region-selector select {
    width: 200px;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.weather-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.weather-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.weather-extra-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
}

.info-item i {
    width: 20px;
    color: #666;
}

.weather-condition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.weather-condition img {
    width: 50px;
    height: 50px;
}

.aqi-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.weather-comment {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    white-space: pre-line;
}

@media (min-width: 768px) {
    .weather-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .weather-comment {
        grid-column: 1 / -1;
    }
} 