/* 自定义样式 */
body {
    padding-bottom: 70px; /* 为固定底部留出空间 */
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
    z-index: 100;
}

/* 表格样式 */
.table th {
    background-color: #f8f9fa;
}

/* 卡片样式 */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fa;
}

/* JSON预览样式 */
pre {
    max-height: 400px;
    overflow-y: auto;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .btn-sm {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
}
