/* 全局样式 */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

/* 导航栏样式 */
.navbar-brand {
    font-weight: bold;
}

.nav-link {
    font-size: 0.95rem;
}

/* 页脚样式 */
.footer {
    margin-top: auto;
    background-color: #f5f5f5;
}

/* 卡片样式 */
.card {
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    font-weight: 500;
    background-color: #f8f9fa;
}

/* 表单样式 */
.form-control:focus, .form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* 表格样式 */
.dataTables_wrapper {
    padding: 0;
}

.table {
    border-collapse: collapse !important;
    width: 100% !important;
}

.table th {
    font-weight: 500;
    background-color: #f8f9fa;
}

/* 登录页面样式 */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f8f9fa;
}

/* 响应式样式 */
@media (max-width: 767px) {
    .navbar-nav {
        margin-top: 10px;
    }
    
    .card {
        margin-bottom: 15px;
    }
}

/* JSON编辑器样式 */
.json-editor {
    width: 100%;
    height: 400px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
    font-size: 14px;
} 