/* 最小化CSS文件 - 仅包含必要的Bootstrap原生样式补充 */

/* 文件上传区域 - 使用Bootstrap原生样式 */
.file-upload-area {
    cursor: pointer;
}

/* 确保表格在小屏幕上可滚动 */
.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}

/* 模态框z-index管理 - 防止重叠 */
.modal {
    z-index: 1200;
}

.modal-backdrop {
    z-index: 1190;
}

/* 确保导航栏在移动端正常显示 */
@media (max-width: 768px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* 确保侧边栏在移动端可以隐藏 */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 56px;
        left: -250px;
        width: 250px;
        height: calc(100vh - 56px);
        z-index: 1000;
        transition: left 0.3s ease;
    }
    
    .sidebar.show {
        left: 0;
    }
}