/* 表格增强样式 */
.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .table-responsive {
        border: 0;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
}

/* 操作按钮间距 */
.btn-group-actions .btn {
    margin: 2px;
}

/* 数据表格标题固定 */
.table thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}