/* 系统状态相关样式 */
.status-section {
    margin-top: 30px;
}

.status-section h3 {
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #28a745;
    padding-bottom: 10px;
}

.status-info {
    background: #e8f5e8;
    border: 1px solid #d4edda;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.status-item {
    background: white;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.status-value {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.status-label {
    color: #666;
    font-size: 14px;
} 