/* LDIS 基础样式 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #f5f7fa;
}

[v-cloak] {
    display: none;
}

a {
    color: #409EFF;
    text-decoration: none;
}

a:hover {
    color: #66b1ff;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #c0c4cc;
    border-radius: 3px;
}

::-webkit-scrollbar-track {
    background-color: #f5f7fa;
}

/* 通用卡片样式 */
.card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebeef5;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 500;
    color: #303133;
}

/* 表格样式 */
.el-table {
    margin-top: 15px;
}

/* 分页样式 */
.pagination-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

/* 状态标签颜色 */
.status-created { color: #909399; }
.status-uploading { color: #E6A23C; }
.status-processing { color: #409EFF; }
.status-analyzing { color: #67C23A; }
.status-completed { color: #67C23A; }
.status-failed { color: #F56C6C; }

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #909399;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 20px;
}
