/*
# ==============================================================================
# DATEI: static/ai_lab.css
# ZIEL: Spezifische Styles für das AI Intelligence Lab Dashboard
# Rocky Linux kompatibel – HEIMDALL Standard
# ==============================================================================
*/

/* Spezifische Quant-Layouts */
.quant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

/* Korrelations-Matrix */
.corr-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
}

.corr-item {
    background: rgba(255,255,255,0.02); 
    padding: 15px; 
    border-radius: 12px;
    text-align: center; 
    border: 1px solid rgba(255,255,255,0.05);
}

.corr-label { 
    font-size: 0.7rem; 
    color: var(--neon-cyan); 
    margin-bottom: 5px; 
    opacity: 0.7; 
}

.corr-value { 
    font-family: 'JetBrains Mono'; 
    font-weight: 800; 
    font-size: 1.2rem; 
    color: #fff; 
}

/* Stress-Indikator */
.stress-container { 
    margin-top: 20px; 
}

.stress-label { 
    display: flex; 
    justify-content: space-between; 
    font-size: 0.75rem; 
    margin-bottom: 8px; 
    color: var(--text-muted); 
}

.stress-track { 
    height: 6px; 
    background: rgba(255,255,255,0.1); 
    border-radius: 3px; 
    position: relative; 
}

.stress-fill { 
    height: 100%; 
    background: linear-gradient(to right, #00ffcc, #ff0055); 
    border-radius: 3px; 
    transition: width 1s ease; 
}

/* Chart Optimierung */
.chart-wrapper { 
    height: 350px; 
}

/* Audit Table Integration */
.audit-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 10px; 
}

.audit-table th { 
    text-align: left; 
    font-size: 0.65rem; 
    color: var(--neon-cyan); 
    padding: 10px; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    text-transform: uppercase; 
}

.audit-table td { 
    padding: 12px 10px; 
    font-size: 0.8rem; 
    border-bottom: 1px solid rgba(255,255,255,0.02); 
    font-family: 'Roboto Mono'; 
}

.error-tag { 
    color: #ff0055; 
    font-weight: 700; 
}

/* Gauge & High-End Visuals */
.gauge-container {
    position: relative;
    width: 100%;
    height: 180px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gauge-label {
    position: absolute;
    top: 60%;
    text-align: center;
    font-family: 'Orbitron';
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

.sparkline-container {
    width: 100%;
    height: 30px;
    margin-top: 5px;
}

.forecast-range {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    font-size: 0.7rem;
    border-left: 2px solid var(--neon-cyan);
}

.range-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 8px 0;
    position: relative;
    overflow: hidden;
}

.range-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--neon-cyan), transparent);
    width: 40%;
    left: 30%;
    filter: blur(1px);
}

/* AI Core Orb Animation */
.ai-core-orb {
    width: 45px; 
    height: 45px;
    background: linear-gradient(45deg, var(--neon-cyan), #9d50bb);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
    animation: orb-pulse 4s infinite;
}

@keyframes orb-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 40px rgba(0, 255, 204, 0.6); }
}

/* Prognose Card Styling */
.forecast-card {
    border-left: 2px solid var(--neon-pink) !important;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.05), transparent) !important;
}

.forecast-price {
    font-size: 1.8rem; 
    font-weight: 800; 
    font-family: 'Roboto Mono';
}

/* Regime Status Badge */
.regime-badge {
    background: rgba(0, 255, 204, 0.05); 
    color: var(--neon-cyan); 
    padding: 5px 15px; 
    border: 1px solid var(--neon-cyan); 
    border-radius: 4px; 
    font-family: 'Orbitron'; 
    font-size: 0.7rem;
}
