:root {
    --primary: #00d6b4;
    --navy: #0e132b;
    --accent: #003cc8;
    --bg: #f3f7fa;
    --white: #ffffff;
    --text-main: #1a1f36;
    --text-muted: #64748b;
}

body { font-family: 'Inter', sans-serif; background-color: var(--bg); color: var(--text-main); margin: 0; }

/* 1. PROFESSIONAL HEADER */
.fintech-header { background: var(--navy); padding: 15px 0; color: white; position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.logo { font-weight: 800; font-size: 1.4rem; color: var(--primary); }
.logo span { color: white; font-weight: 400; }
nav a { color: #cbd5e1; text-decoration: none; margin-left: 20px; font-weight: 600; font-size: 0.9rem; }

/* 2. DASHBOARD PANELS */
.glass-card { background: var(--white); border-radius: 16px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; }
.card-header h2 { margin: 0 0 10px 0; font-size: 1.3rem; color: var(--navy); }

/* 3. TABLE STYLING (FIX FOR EMPTY TABLE) */
.fintech-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.fintech-table th { text-align: left; padding: 15px; background: #f8fafc; color: var(--text-muted); font-size: 12px; text-transform: uppercase; }
.fintech-table td { padding: 18px 15px; border-bottom: 1px solid #f1f5f9; font-weight: 600; }

/* 4. SENTIMENT BADGES */
.sentiment-badge { padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 800; }
.bullish { background: #dcfce7; color: #166534; }
.bearish { background: #fee2e2; color: #991b1b; }
items: flex-end; padding: 20px; }
.sentiment-commentary {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

.sentiment-commentary p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--primary); /* Teal accent line */
}

.gauge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

