body {
    margin: 0;
    padding: 20px;
    background: #f4f6f8;
    font-family: Arial, sans-serif;

    display: flex;
    justify-content: center;

    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 800px;
}

h1 {
    text-align: center;
    margin-bottom: 25px;
}

.weather-card,
.recommendation-card {
    background: white;

    padding: 20px;
    margin-bottom: 20px;

    border-radius: 12px;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08);
}

.weather-card h2,
.recommendation-card h2 {
    margin-top: 0;
}

#weather,
#homeRecommendation,
#outsideRecommendation,
#forecast {
    font-size: 18px;
    line-height: 1.6;
}

.forecast-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.forecast-table th,
.forecast-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.forecast-table th {
    background-color: #f8fafc;
    font-weight: 600;
}

.forecast-table tr:hover {
    background-color: #f9fafb;
}

@media (max-width: 768px) {

    body {
        padding: 10px;
    }

    .weather-card,
    .recommendation-card {
        padding: 15px;
    }

    #weather,
    #homeRecommendation,
    #outsideRecommendation,
    #forecast {
        font-size: 16px;
    }
}