/* ==============================================================================
   EQUITY LAB CSS - MURNI VANILLA ELITE
   ============================================================================== */

/* Tombol Filter Kaca */
.eq-pill-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #a1a1aa;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.eq-pill-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.eq-pill-btn.active {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
    color: #c084fc;
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.2);
}

/* Tooltip Mengambang Chart */
.tv-tooltip {
    position: absolute;
    display: none;
    padding: 15px;
    background: rgba(14, 12, 18, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 132, 252, 0.4);
    box-shadow: 0 15px 30px rgba(0,0,0,0.9);
    border-radius: 12px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    z-index: 50;
    pointer-events: none;
    transform: translate(-50%, -100%); /* Biar tooltip pas di atas kursor */
    margin-top: -15px;
}

/* Kotak Stat Bawah */
.eq-stat-box {
    background: rgba(14, 12, 18, 0.8);
    border: 1px solid rgba(192, 132, 252, 0.2);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: inset 0 0 15px rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}

.eq-stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 132, 252, 0.5);
    background: rgba(192, 132, 252, 0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.eq-stat-box small {
    display: block;
    color: #8a93a6;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.eq-stat-box div {
    font-size: 20px;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
}

/* Custom Bar R-Multiple Histogram */
.dist-bar-wrapper {
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    width: 100%; height: 100%; position: relative;
}
.dist-bar {
    width: 80%;
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}
.dist-bar-value {
    position: absolute; top: -20px;
    font-size: 10px; font-weight: 800; color: #fff;
    opacity: 0; transition: 0.3s;
}
.dist-bar-wrapper:hover .dist-bar-value { opacity: 1; color: #c084fc; }
.dist-bar-wrapper:hover .dist-bar { filter: brightness(1.5); box-shadow: 0 0 15px currentColor; }