/* 数字长城中心平台 - 自定义样式 */

:root {
    --primary-color: #4e73df;
    --success-color: #1cc88a;
    --info-color: #36b9cc;
    --warning-color: #f6c23e;
    --danger-color: #e74a3b;
    --secondary-color: #858796;
    --light-color: #f8f9fc;
    --dark-color: #5a5c69;
}

/* 全局样式 */
body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--light-color);
}

/* 侧边栏样式 */
#sidebar {
    min-height: calc(100vh - 56px);
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    z-index: 100;
}

#sidebar .nav-link {
    color: var(--dark-color);
    font-weight: 400;
    padding: 1rem 1.5rem;
    border-radius: 0.35rem;
    margin: 0.25rem 0.5rem;
}

#sidebar .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(78, 115, 223, 0.1);
}

#sidebar .nav-link.active {
    color: white;
    background-color: var(--primary-color);
}

#sidebar .nav-link i {
    margin-right: 0.5rem;
}

/* 主内容区域 */
main {
    padding-top: 1.5rem;
}

/* 卡片样式 */
.card {
    border: none;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: white;
    border-bottom: 1px solid #e3e6f0;
    font-weight: 600;
    color: var(--dark-color);
}

/* 边框样式 */
.border-left-primary {
    border-left: 0.25rem solid var(--primary-color) !important;
}

.border-left-success {
    border-left: 0.25rem solid var(--success-color) !important;
}

.border-left-info {
    border-left: 0.25rem solid var(--info-color) !important;
}

.border-left-warning {
    border-left: 0.25rem solid var(--warning-color) !important;
}

/* 文本颜色 */
.text-xs {
    font-size: 0.7rem;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.text-gray-300 {
    color: #dddfeb !important;
}

.text-gray-800 {
    color: #5a5c69 !important;
}

/* 徽章样式 */
.badge {
    font-size: 0.75rem;
}

/* 进度条样式 */
.progress {
    height: 0.5rem;
}

/* 表格样式 */
.table {
    background-color: transparent;
}

.table th {
    border-top: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-color);
}

.table td {
    font-size: 0.85rem;
    padding: 0.75rem;
    vertical-align: middle;
}

/* 按钮样式 */
.btn {
    font-size: 0.85rem;
    border-radius: 0.35rem;
}

.btn-sm {
    font-size: 0.75rem;
}

/* 图标样式 */
.bi {
    vertical-align: -0.125em;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

/* 响应式调整 */
@media (max-width: 768px) {
    #sidebar {
        position: fixed;
        top: 56px;
        left: -250px;
        width: 250px;
        height: calc(100vh - 56px);
        transition: left 0.3s ease;
    }
    
    #sidebar.show {
        left: 0;
    }
    
    main {
        margin-left: 0;
    }
}

/* 动画效果 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* 状态指示器 */
.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

.status-indicator.online {
    background-color: var(--success-color);
}

.status-indicator.offline {
    background-color: var(--danger-color);
}

.status-indicator.warning {
    background-color: var(--warning-color);
}

/* 威胁级别样式 */
.threat-low {
    color: var(--success-color);
}

.threat-medium {
    color: var(--warning-color);
}

.threat-high {
    color: var(--danger-color);
}

.threat-critical {
    color: #721c24;
    font-weight: bold;
}

/* 节点等级样式 */
.node-free {
    background-color: var(--secondary-color);
}

.node-pro {
    background-color: var(--warning-color);
}

.node-premium {
    background-color: var(--primary-color);
}

/* 仪表板特定样式 */
.dashboard-metric {
    transition: transform 0.2s;
}

.dashboard-metric:hover {
    transform: translateY(-2px);
}

/* 通知样式 */
.notification {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 1050;
    max-width: 350px;
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 数据表格滚动 */
.table-responsive {
    max-height: 400px;
    overflow-y: auto;
}

/* 模态框样式 */
.modal-content {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid #e3e6f0;
}

.modal-footer {
    border-top: 1px solid #e3e6f0;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 工具提示样式 */
.tooltip {
    font-size: 0.75rem;
}

/* 图表容器 */
.chart-container {
    position: relative;
    height: 300px;
    margin-bottom: 1rem;
}

/* 搜索框样式 */
.search-box {
    position: relative;
}

.search-box input {
    padding-left: 2.5rem;
}

.search-box .search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
}

/* 标签云样式 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--light-color);
    border: 1px solid #e3e6f0;
    border-radius: 1rem;
    font-size: 0.75rem;
    color: var(--dark-color);
    transition: all 0.2s;
}

.tag:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* 时间轴样式 */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e3e6f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* 统计卡片增强 */
.stats-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2e59d9 100%);
    color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.stats-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-card p {
    margin: 0;
    opacity: 0.9;
}

/* 深色主题支持 */
@media (prefers-color-scheme: dark) {
    :root {
        --light-color: #1a1a1a;
        --dark-color: #e3e6f0;
    }
    
    body {
        background-color: #121212;
        color: #e3e6f0;
    }
    
    .card {
        background-color: #1e1e1e;
    }
    
    .card-header {
        background-color: #2d2d2d;
        border-bottom-color: #404040;
    }
    
    .table {
        color: #e3e6f0;
    }
    
    .table th {
        color: #e3e6f0;
        border-color: #404040;
    }
    
    .table td {
        border-color: #404040;
    }
}

/* 打印样式 */
@media print {
    .no-print {
        display: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .btn {
        display: none;
    }
}