/* ═══════════════════════════════════════════════════════════════
   TABLES - Terminal Theme
   ═══════════════════════════════════════════════════════════════ */

.table {
    color: var(--phosphor-green) !important;
    background: transparent;
}

.table-bordered {
    border: 2px solid rgba(0, 255, 65, 0.4) !important;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid rgba(0, 255, 65, 0.3) !important;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.2);
}

.table thead th {
    background: #0a0e0a !important;
    border-bottom: 2px solid var(--phosphor-green) !important;
    font-weight: bold !important;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
}

.table tbody tr:nth-child(odd) {
    background: rgba(0, 255, 65, 0.03) !important;
}

.table tbody tr:hover {
    background: rgba(0, 255, 65, 0.08) !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: rgba(0, 255, 65, 0.03) !important;
}