body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
    color: #333;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.current-weather {
    margin-bottom: 40px;
}

.weather-info {
    text-align: center;
}

.weather-info table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.weather-info th, .weather-info td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.weather-info th {
    background-color: #003366;
    color: #fff;
}

.forecast {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forecast-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    overflow: hidden;
}

.forecast-card-header {
    border-bottom: 2px solid #003366;
    margin-bottom: 10px;
}

.forecast-card-header h3 {
    margin: 0;
    color: #003366;
}

.forecast-table {
    width: 100%;
    border-collapse: collapse;
}

.forecast-table th, .forecast-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.forecast-table th {
    background-color: #003366;
    color: #fff;
}

.forecast-table tr:nth-child(even) {
    background-color: #f2f2f2;
}
