html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto; /* 确保出现滚动条 */
}

body {
    font-family: Arial, sans-serif;
    position: relative; /* 使伪元素的定位正确 */
    overflow: auto; 
}

body::before {
    content: "";
    position: fixed; /* 确保背景固定在视口中 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('http://pi.amzcd.top:9199/background');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    z-index: -1; /* 确保背景在内容下方 */
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2); 
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    overflow: auto; /* 允许内容滚动 */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}

td {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.status-open {
    background-color: rgba(76, 175, 80, 0.8);
    color: #fff;
}

.status-closed {
    background-color: rgba(244, 67, 54, 0.8);
    color: #fff;
}

.status-open, .status-closed {
    font-weight: bold;
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: #fff;
}

#status-message {
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin: 20px 0;
}
