body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f1f1f1;
}
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.container {
    width: 90%;
    margin: 0 auto;
}
.station-offline {
    color: #B22222;
    font-weight: bold;
    text-align: center;
}
.station-header {
    background-color: #5e92ca;
    color: #fff;
    text-align: center;
}
.forecast-icon {
    padding-left: 15px;
    max-height: 60px;
    max-width: 60px;
    float: right;
}
.narrative-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.table th, .table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}
.table th {
    background-color: #28a745;
    color: #fff;
}
.table tr:nth-child(even) {
    background-color: #f2f2f2;
}
.neighborhood-section {
    margin-bottom: 30px;
}
.neighborhood-header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
}
.station-section {
    margin-bottom: 20px;
}
.high-wind {
    background-color: red !important;
    color: white !important;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }
    .table th, .table td {
        padding: 5px;
        font-size: small;
    }
    .header {
        margin-bottom: 10px;
        padding: 0 10px;
    }
    .forecast-icon {
        max-height: 40px;
        max-width: 40px;
    }
    .neighborhood-header, .station-header {
        font-size: medium;
        padding: 5px;
    }
}
