/* =========================================================================================================================== */
/*                                            🧩 METRICS – TX AMOUNT                                                           */
/*                                            📍 static/css/pages/metrics/tx_amount.css                                        */
/* =========================================================================================================================== */



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

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

    /* 🟡 Gold → ⚪ Weiß (tabellenkonform, nicht flashy) */
    background: linear-gradient(
        90deg,
        #ffd700 0%,     /* Gold */
        #ffd700 70%,
        #ffffff 100%   /* Weiß */
    );

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

    /* ✨ dezenter technischer Glow */
    text-shadow:
        0 1px 0 rgba(255,255,255,0.35),
        0 0 6px rgba(255,215,0,0.4);

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

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

/* Tabelle allgemein */
#METRICS_BTC_TX_AMOUNT_CONTAINER .table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #ffd700; /* gold */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 1.25rem; /* größere Schrift */
    border-radius: 1.5rem;
    overflow: hidden;
}

/* Wrapper: FULL WIDTH – OHNE Hintergrund & Schatten */
.METRICS_BTC_TX_AMOUNT-subsubtab .table {
    margin: 0 auto;
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    border-radius: 1.5rem;

    /* Entfernt: Hintergrund + Schatten */
    background: none;
    box-shadow: none;
}

/* Tabellenkopf */
#METRICS_BTC_TX_AMOUNT_CONTAINER thead th {
    background: linear-gradient(145deg, #1b1b1b, #333);
    color: #ffffff;
    text-align: center;
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
     font-weight: 400; 
    border-bottom: 2px solid #ffd700;
}

/* Tabellenkörper */
#METRICS_BTC_TX_AMOUNT_CONTAINER tbody td {
    background: rgba(34, 34, 34, 0.6);
    text-align: center;
    padding: 0.9rem 1rem;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    transition: background 0.3s;
}

/* TXID größer + monospace */
#METRICS_BTC_TX_AMOUNT_CONTAINER tbody td:nth-child(2) {
    font-family: monospace;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

/* Hover-Effekt */
#METRICS_BTC_TX_AMOUNT_CONTAINER tbody tr:hover td {
    background: rgba(255, 215, 0, 0.15);
    color: #fff;
}

/* Runde Ecken (oben) */
#METRICS_BTC_TX_AMOUNT_CONTAINER thead th:first-child {
    border-top-left-radius: 1.5rem;
}
#METRICS_BTC_TX_AMOUNT_CONTAINER thead th:last-child {
    border-top-right-radius: 1.5rem;
}

/* Runde Ecken (unten) */
#METRICS_BTC_TX_AMOUNT_CONTAINER tbody tr:last-child td:first-child {
    border-bottom-left-radius: 1.5rem;
}
#METRICS_BTC_TX_AMOUNT_CONTAINER tbody tr:last-child td:last-child {
    border-bottom-right-radius: 1.5rem;
}

/* Feiner Schatten zwischen Zeilen */
#METRICS_BTC_TX_AMOUNT_CONTAINER tbody tr {
    box-shadow: inset 0 -1px 0 rgba(255, 215, 0, 0.05);
}

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

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

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

/* Info-Box – orientiert an Amount-Farbe (Bitcoin Gold) */
.info-box-metrics-tx-amount {
    box-shadow:
        /* 🟡 Transaction Amount – Gold / BTC-Farbe */
        0 0 0 1px rgba(255, 200, 0, 1),
        0 0 10px rgba(255, 200, 0, 1);
}



/* =========================================================================================================================== */
/*                                            🧩 METRICS – TX AMOUNT                                                           */
/*                                            📱 MOBILE (max-width: 1024px)                                                    */
/* =========================================================================================================================== */

@media (max-width: 1024px) {

  /* METRICS_BTC_TX_AMOUNT – Tabelle Basis */
  #METRICS_BTC_TX_AMOUNT_CONTAINER table {
    width: 100%;
    table-layout: fixed;
    min-width: 0 !important;
  }

  /* METRICS_BTC_TX_AMOUNT – Rang */
  #METRICS_BTC_TX_AMOUNT_CONTAINER th:nth-child(1),
  #METRICS_BTC_TX_AMOUNT_CONTAINER td:nth-child(1) {
    width: 9%;
    font-size: 0.6rem !important;
    opacity: 0.85;
  }

  /* METRICS_BTC_TX_AMOUNT – TXID */
  #METRICS_BTC_TX_AMOUNT_CONTAINER th:nth-child(2),
  #METRICS_BTC_TX_AMOUNT_CONTAINER td:nth-child(2) {
    width: 41%;
    font-size: 0.6rem !important;
    opacity: 0.85;
  }

  /* METRICS_BTC_TX_AMOUNT – BTC-Betrag */
  #METRICS_BTC_TX_AMOUNT_CONTAINER th:nth-child(3),
  #METRICS_BTC_TX_AMOUNT_CONTAINER td:nth-child(3) {
    width: 18%;
    font-size: 0.6rem !important;
    opacity: 0.85;
  }

  /* METRICS_BTC_TX_AMOUNT – Zeitpunkt */
  #METRICS_BTC_TX_AMOUNT_CONTAINER th:nth-child(4),
  #METRICS_BTC_TX_AMOUNT_CONTAINER td:nth-child(4) {
    width: 32%;
    font-size: 0.6rem !important;
    opacity: 0.85;
  }

}