/* 全局样式 */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 导航栏样式 */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: bold;
}

/* 卡片样式 */
.card {
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,.125);
}

/* 表格样式 */
.table th {
    background-color: #f8f9fa;
    border-top: none;
}

/* 表单样式 */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* 按钮样式 */
.btn {
    font-weight: 500;
}

.btn-group-sm > .btn {
    padding: .25rem .5rem;
}

/* 徽章样式 */
.badge {
    padding: .4em .6em;
    font-weight: 500;
}

/* 页脚样式 */
.footer {
    margin-top: auto;
    border-top: 1px solid #dee2e6;
}

/* 统计卡片样式 */
.stats-card {
    transition: transform .2s;
}

.stats-card:hover {
    transform: translateY(-5px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .table-responsive {
        margin-bottom: 1rem;
    }
} 