.weather-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: 60px;
}

.weather-widget {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.weather-widget-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 20px;
}

.weather-city-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.weather-location-text {
    font-size: 0.875rem;
}

.weather-current-temp {
    font-size: 2rem;
    font-weight: 700;
    color: #dc143c;
}

.weather-current-temp i {
    font-size: 1.5rem;
    color: #f39c12;
}

.weather-days {
    margin-top: 20px;
}

.weather-day-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.weather-day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.weather-day-card.today {
    background: linear-gradient(135deg, #dc143c 0%, #c1121f 100%);
    color: #ffffff;
    border-color: #dc143c;
}

.weather-day-card.today .weather-day-name,
.weather-day-card.today .weather-day-date,
.weather-day-card.today .temp-max,
.weather-day-card.today .temp-min {
    color: #ffffff;
}

.weather-day-card.today .weather-day-icon i {
    color: #ffd700;
}

.weather-day-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.weather-day-date {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.weather-day-icon {
    font-size: 2rem;
    margin: 15px 0;
    color: #4a90e2;
}

.weather-day-temps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.temp-max {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.temp-min {
    font-size: 0.9rem;
    color: #6c757d;
}

.weather-loading,
.weather-error {
    color: #6c757d;
}

.weather-error i {
    color: #f39c12;
}

@media (max-width: 768px) {
    .weather-widget {
        padding: 20px;
    }

    .weather-city-name {
        font-size: 1.2rem;
    }

    .weather-current-temp {
        font-size: 1.5rem;
    }

    .weather-day-card {
        padding: 15px 10px;
    }

    .weather-day-icon {
        font-size: 1.5rem;
    }
}

