body {
    font-family: Arial, sans-serif;
    margin: 20px;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

h1 {
    text-align: center;
    font-size: 28px;
    color: #222;
    margin-bottom: 30px;
}

.site-status {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #444;
    border-bottom: 2px solid #4CAF50;
    display: inline-block;
    padding-bottom: 5px;
}

.status {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.status .day {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.status .day:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.normal {
    background-color: #4CAF50;
}

.abnormal {
    background-color: #F44336;
}

.recovered {
    background-color: #FF9800;
}

#current-status-site, #current-status-status, #current-status-survey {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
    text-align: center;
}
/* 
#current-status-site {
    background-color: #4CAF50;
}

#current-status-status {
    background-color: #F44336;
}

#current-status-survey {
    background-color: #FF9800;
} */

/* 全局布局调整 */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

footer {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #777;
}

footer a {
    color: #4CAF50;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-bottom: 2px solid #4CAF50;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 50px;
    width: auto;
}

.copyright {
    font-size: 14px;
    font-weight: bold;
    color: #444;
}
