body {
    background-color: #f0f2f5;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    text-align: center;
    padding-top: 40px;
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
}

.weather-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: #333;
    border: 1px solid #eee;
}

.weather-card h2 {
    color: #0dbd8b;
    margin-top: 0;
    border-bottom: 2px solid #f0fffb;
    padding-bottom: 10px;
}

.forecast-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f9f9f9;
}

.today-row {
    background: #f0fffb;
    font-weight: bold;
    border-radius: 8px;
    padding: 8px;
}

.update-time {
    font-size: 0.7rem;
    color: #bbb;
    text-align: right;
    margin-top: 15px;
}
