.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#downloadContainer {
    display: flex;
    flex-direction: column;
    align-items: center; /* 水平居中 */
}

.file-item {
    background-color: #f8f9fa; /* 浅灰背景 */
    border: 1px solid #dee2e6; /* 边框颜色 */
    border-radius: 8px; /* 圆角 */
    padding: 15px; /* 内边距 */
    margin: 10px 0; /* 外边距，分割效果 */
    width: 300px; /* 固定宽度 */
    display: flex; /* 使用 Flexbox */
    justify-content: center; /* 水平居中对齐 */
    transition: background 0.3s; /* 背景过渡效果 */
}

.file-item:hover {
    background-color: #e2e6ea; /* 悬停时的背景颜色 */
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
    width: 100%; /* 使按钮宽度填满父元素 */
    text-align: center; /* 文本居中 */
}

.download-button:hover {
    background: #0056b3;
}

/* 分割线样式 */
.separator {
    height: 2px; /* 分割线高度 */
    background-color: #dee2e6; /* 分割线颜色 */
    margin: 20px 0; /* 分割线上下的间距 */
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background: #6c757d;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s;
}

.back-button:hover {
    background: #5a6268;
}
