/* 基本样式 */
body {
    font-family: "Microsoft YaHei", sans-serif;
    background-color: #f5f5f5;
}

.sidebar {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main-content {
    padding: 20px;
}

.content-page {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 表格样式 */
.table {
    font-size: 14px;
}

.table th {
    background-color: #f8f9fa;
    text-align: center;
    vertical-align: middle;
}

.table td {
    vertical-align: middle;
}

/* 表格操作按钮组 */
.action-btns .btn {
    margin-right: 5px;
}

/* 修改Bootstrap默认样式 */
.nav-pills .nav-link.active {
    background-color: #0d6efd;
}

.form-label {
    font-weight: 500;
}

/* 弹窗样式 */
.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

/* 任务详情样式 */
.detail-item {
    margin-bottom: 15px;
}

.detail-label {
    font-weight: 600;
    color: #495057;
}

.detail-value {
    color: #212529;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        z-index: 1000;
        width: 100%;
        height: auto;
    }
    
    .main-content {
        margin-top: 60px;
    }
} 