/* 背景视频全屏覆盖 */
#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1; /* 保证视频位于内容的背景层 */
}

/* 背景视频覆盖整个页面并智能适配 */
body {
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 主内容区域 */
.main-content {
    flex-grow: 1;
    padding: 20px;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

/* 透明框包裹表格 */
.table-container {
    background-color: rgba(255, 255, 255, 0.1); /* 透明效果 */
    padding: 15px;
    border-radius: 10px;
    max-height: 665px; /* 限制表格显示的最大高度 */
    overflow-y: auto; /* 自动出现垂直滚动条 */
}

/* 表格字体颜色，所有内容全部为红色 */
table {
    font-size: 16px;
    color: white !important; /* 强制设置为红色 */
}

table thead th {
    border-bottom: 1px solid white !important; /* 表头横线为红色 */
    color: white !important; /* 表头文字为红色 */
}

table tbody tr {
    color: white !important; /* 确保每一行的文字为红色 */
}

table tbody td {
    border-bottom: 1px solid white(255, 0, 0, 0.2); /* 红色横线透明效果 */
    padding: 10px;
    color: white !important; /* 表格每个单元格的文字为红色 */
}

/* 进入评分系统按钮样式，紧靠表格 */
.button-wrapper {
    margin-top: 10px; /* 去掉按钮与表格之间的间距 */
}

#goToIndexBtn {
    background-color: rgba(0, 123, 255, 0.8);
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    transition: background-color 0.3s ease;
}

#goToIndexBtn:hover {
    background-color: rgba(0, 123, 255, 1);
}

/* 底部版权信息 */
footer {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    position: fixed;
    bottom: 0;
}

footer p {
    margin: 0;
    color: white;
}
