#info {
    /* height: 200px; */
    width: 100%;
    background-color: rgba(191, 191, 191, 0.2);
    /* 调整透明度以适应毛玻璃效果 */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
}

#info .task-info {
    display: flex;

}

.task-info input,
button {
    padding: 1px;
    margin: 5px 10px;
    height: 15px;
    line-height: 15px;
    font-size: 12px;
}

.task-info button {
    width: 50px;
    height: 20px;
    line-height: 20px;
    margin-top: auto 0;
    border-radius: 3px;
}

#info #search-task {
    width: 200px;
    margin-right: 15px;
}

/* 基本重置 */
#task-table table {
    /* display: none; */
    width: 98%;
    /* 表格宽度为100% */
    border-collapse: collapse;
    /* 边框合并 */
    margin: 1px 10px;
    font-size: 12px;
    font-weight: normal;
    /* visibility: hidden; */
}

/* 表格头部和单元格样式 */
#task-table th {
    font-weight: normal;
}

#task-table th,
td {
    padding: 2px 5px;
    /* 内边距 */
    border: 1px solid #ffffff;
    /* 边框 */
    text-align: left;
    /* 文本左对齐 */
    word-break: break-word;
    /* 允许在单词内换行 */
    word-wrap: break-word;
    /* 旧的写法，与 word-break: break-word; 相同 */
    overflow-wrap: break-word;
    /* 允许在单词内换行 */
    color: rgb(99, 99, 99);
}

/* 设置每列的宽度 */
#task-table th:nth-child(1),
td:nth-child(1) {
    width: 14%;
}

#task-table th:nth-child(2),
td:nth-child(2) {
    width: 8%;
}

#task-table th:nth-child(3),
td:nth-child(3) {
    width: 8%;
}

#task-table th:nth-child(4),
td:nth-child(4) {
    width: 50%;
}

#task-table th:nth-child(5),
td:nth-child(5) {
    width: 10%;
}

#task-table th:nth-child(6),
td:nth-child(6) {
    width: 10%;
}

#task-table td:hover {
    background-color: #dedede;
}

#task-table td:nth-child(5) {
    cursor: pointer;
}
.status-box p {
    margin: 5px 0 0 10px;
    font-size: 12px;
    padding-bottom: 5px;
    display: flex;
    /* visibility: hidden; */
}
.status-box p:nth-child(2) {
    margin: 0 0 0 10px;

}
.status-pending {
    color: rgba(0, 81, 255, 0.815);
}

.status-failure {
    color: red;
}

.status-success {
    color: rgb(0, 150, 45);
}
.status{
    font-weight: bold;
}

tr.selected {
    background-color: #c0c0c0;
}

#task-table,
#info div p,
.container-viz {
    display: none;
}

.download-box {
    margin-top: 15px;
    display: none;
    
}
.download-item {
    border-radius: 5px;
    width: 100%;
    /* height: 100px; */
    background-color: #8d86865e;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: flex-start;
}
#download-package{
    background-color: #e6baba86;
}
.download-item div{
    margin-right: 5%;
    width: 80%;

}
.download-button{
    width: 10%;
    margin-right: 2%;
    margin-left: 10%;
}
.download-item div p{
    margin: 0;
    padding: 0;
}
.item-detail{
    color: rgb(87, 87, 87);
    font-size: 0.9em;
    margin-top: 5px;
}
.icon{
    width: 40px;
    height: 40px;
    margin: 0 2%;
}
