/* === MODULE 3: MENTAL MAP STYLES === */

.mental-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

/* --- Header --- */
.mc-header {
    background: #0f172a;
    padding: 15px 20px;
    border-bottom: 1px solid #334155;
}

.mc-title {
    font-size: 1rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; margin-bottom: 2px;
}
.mc-title .icon { font-size: 1.2rem; }
.mc-sub { font-size: 0.75rem; color: #64748b; margin-left: 28px; }

/* --- Leader Rows General --- */
.leader-row {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    position: relative;
}

.lr-top {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
}
.lr-top.compact { margin-bottom: 0; }

.lr-user { display: flex; align-items: center; gap: 12px; }

.lr-avatar {
    width: 42px; height: 42px;
    background: #334155; border-radius: 8px; /* Square-ish per design */
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #cbd5e1; font-size: 0.9rem;
    border: 1px solid #475569;
}
.lr-avatar.small { width: 32px; height: 32px; font-size: 0.75rem; }
.lr-avatar.motor { border-color: #ef4444; color: #fecaca; background: rgba(239, 68, 68, 0.1); }

.lr-meta .name { display: block; font-weight: 700; color: #fff; font-size: 0.95rem; }
.lr-meta .role { display: block; font-size: 0.7rem; color: #94a3b8; margin-top: 2px; }

.lr-score { font-size: 1.4rem; font-weight: 800; color: #fff; }
.lr-score.small { font-size: 1rem; color: #64748b; }
.lr-score.red-text { color: #f87171; }

/* --- CAPTAIN HIGHLIGHT (The Gold Card) --- */
.leader-row.captain-highlight {
    background: linear-gradient(to right, rgba(234, 179, 8, 0.05), transparent);
    border-left: 4px solid #eab308; /* Gold Stripe */
}

/* Badge C */
.c-badge {
    position: absolute; top: 10px; left: -4px;
    background: #eab308; color: #000;
    font-weight: 900; font-size: 0.6rem;
    width: 16px; height: 16px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 2;
}

/* --- BARS (The Data) --- */
.lr-bars {
    display: flex; flex-direction: column; gap: 8px;
    margin-top: 5px;
}
.lr-bars.single { margin-top: 12px; }

.stat-bar-row {
    display: flex; align-items: center; gap: 15px;
}

.sb-label {
    width: 80px; font-size: 0.7rem; color: #94a3b8; font-weight: 600;
}

.sb-track {
    flex: 1; height: 6px; background: #334155; border-radius: 3px; overflow: hidden;
}

.sb-fill { height: 100%; border-radius: 3px; }
.sb-fill.yellow { background: #eab308; }
.sb-fill.blue { background: #3b82f6; }
.sb-fill.green { background: #22c55e; }
.sb-fill.red { background: #ef4444; }


/* --- MOTOR SECTION --- */
.leader-section-title {
    padding: 15px 20px 5px 20px;
    font-size: 0.7rem; color: #f87171; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 6px;
}

.motor-row {
    border-bottom: none;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.05), transparent);
    border-left: 4px solid #ef4444; /* Red Stripe */
}


/* Responsive */
@media (max-width: 600px) {
    .sb-label { width: 60px; font-size: 0.65rem; }
}