/* =========================================================================================================================== */
/*                                            🧩 METRICS – TX FEES                                                             */
/*                                            📍 static/css/pages/metrics/tx_fees.css                                          */
/* =========================================================================================================================== */



/* HEADLINE */
.headline-metrics-btc-tx-fees {
    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;

    /* 🔴 Gebühren-Druck → 🔵 geglätteter Trend */
    background: linear-gradient(
        90deg,
        rgb(220, 20, 60) 0%,      /* Crimson – TX Fees */
        rgb(220, 20, 60) 45%,
        rgb(30, 144, 255) 55%,   /* DodgerBlue – SMA */
        rgb(30, 144, 255) 100%
    );

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

    /* ✨ Kosten-Glow */
    text-shadow:
        0 1px 0 rgba(255,255,255,0.45),
        0 0 8px rgba(220,20,60,0.6),
        0 0 8px rgba(30,144,255,0.6);

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

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

/* Abstand zwischen canvas und Text */
#METRICS_BTC_TX_FEES_CONTAINER {
    margin-bottom: 3rem;  
}

/* Info Box - Rahmenfarbe*/
.info-box-metrics-fees {
    box-shadow:
        /* 🔴 Hauptkurve – Crimson */
        0 0 0 1px rgba(220, 20, 60, 1),

        /* 🔵 SMA – DodgerBlue */
        0 0 10px rgba(30, 144, 255, 1);
}
