.weather-container-19da6355 {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    font-family: sans-serif;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.weather-container-19da6355 .w-current-header {
    text-align: center;
    margin-bottom: 20px;
}

.weather-container-19da6355 .w-current-header h2 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    font-weight: 600;
}

.weather-container-19da6355 .w-current-temp {
    font-size: 2.5em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.weather-container-19da6355 .w-forecast {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
}

.weather-container-19da6355 .w-day {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.weather-container-19da6355 .w-day-name {
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
}

.weather-container-19da6355 .w-day-icon {
    font-size: 1.8em;
}

.weather-container-19da6355 .w-day-temp {
    font-size: 0.95em;
    font-weight: 600;
}

.weather-container-19da6355 .w-min {
    opacity: 0.6;
    font-weight: 400;
    font-size: 0.9em;
}

@media (max-width: 600px) {
    .weather-container-19da6355 .w-forecast {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px 10px;
    }
}
