/* =========================================================================================================================== */
/*                                            🧩 METRICS – TX VOLUME                                                           */
/*                                            📍 static/css/pages/metrics/tx_volume.css                                        */
/* =========================================================================================================================== */



/* HEADLINE */
.headline-metrics-btc-tx-volume {
    font-family: "Courier New", monospace;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2em;

    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.25rem;

    /* 🟢 Volumen → 🟠 Trend (SMA) */
    background: linear-gradient(
        90deg,
        rgb(34, 139, 34) 0%,      /* Forest Green – TX Volumen */
        rgb(34, 139, 34) 45%,
        rgb(255, 165, 0) 55%,    /* Orange – SMA / Trend */
        rgb(255, 165, 0) 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    /* ✨ Aktivitäts-Glow */
    text-shadow:
        0 1px 0 rgba(255,255,255,0.4),
        0 0 8px rgba(34,139,34,0.6),
        0 0 8px rgba(255,165,0,0.6);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================================================================================================== */

/* Abstand zwischen Chart und Info-Box */
#METRICS_BTC_TX_VOLUME_CONTAINER {
    margin-bottom: 3rem;
}

/* =========================================================================================================================== */

/* Info Box - Rahmenfarbe*/
.info-box-metrics-volume {
    box-shadow:
        /* 🟢 TX Volume – Real-Time Flow */
        0 0 0 1px rgba(34, 139, 34, 1),

        /* 🟡 SMA – Gold / Orange */
        0 0 10px rgba(255, 165, 0, 1);
}

/* =========================================================================================================================== */
