/* =========================================================================================================================== */
/*                                            🧩 TREASURIES                                                                    */
/*                                            📍 static/css/pages/treasuries/treasuries.css                                    */
/* =========================================================================================================================== */




/* =========================================================================================================================== */
/*                                            📍 Used in: companies, countries, institutions                                   */
/* =========================================================================================================================== */



/* Tabelle */
.treasuries-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #ffd700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    border-radius: 1.5rem;
    overflow: hidden;
}

/* Kopf */
.treasuries-table thead th {
    background: linear-gradient(145deg, #222, #444);
    color: #ffd700;
    text-align: center;
    padding: 0.75rem 0.9375rem;
    font-size: 1.5rem;
    text-shadow:
        0 1px 6px rgba(255, 255, 255, 0.4),
        0 0 10px rgba(255, 215, 0, 0.6);
    border-bottom: 0.125rem solid #ffd700;
    font-weight: 400;
}

/* Body */
.treasuries-table tbody td {
    background: rgba(34, 34, 34, 0.55);
    text-align: center;
    padding: 0.625rem 0.75rem;
    font-size: 1.3rem;
    border-bottom: 0.0625rem solid rgba(255, 215, 0, 0.25);
    transition: background 0.3s, color 0.3s;
}

/* Hover */
.treasuries-table tbody tr:hover td {
    background: rgba(255, 215, 0, 0.12);
    color: #fff;
}

/* Runde Ecken */
.treasuries-table thead th:first-child {
    border-top-left-radius: 1.5rem;
}
.treasuries-table thead th:last-child {
    border-top-right-radius: 1.5rem;
}
.treasuries-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 1.5rem;
}
.treasuries-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 1.5rem;
}

/* Zeilentrenner */
.treasuries-table tbody tr {
    box-shadow: inset 0 -0.0625rem 0 rgba(255, 215, 0, 0.05);
}