/* 自定义样式 */
body {
    font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
}

/* 统计信息卡片 */
.stat-item h4 {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
}

/* 文档列表表格 */
.table th {
    border-top: none;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* 文档内容样式 */
.document-content {
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* 面包屑导航 */
.breadcrumb {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
}

/* 按钮样式 */
.btn-outline-primary:hover {
    color: #fff;
}

/* 加载动画 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* 响应式调整 */
@media (max-width: 767.98px) {
    .stat-item h4 {
        font-size: 1.5rem;
    }
    
    .table {
        font-size: 0.875rem;
    }
    
    .btn-sm {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}