/* ===== 2) TABEL (.togel-table) ===== */
/* Tabel simple — match halaman maroon/gold, tetap terbaca */
.togel-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    color: #ece3d0; /* teks cream, kebaca di bg gelap */
    background: rgba(0, 0, 0, 0.28); /* gelap transparan, motif halaman samar tetap kelihatan */
    border: 1px solid rgba(201, 162, 75, 0.35);
    border-radius: 10px;
    overflow: hidden; /* biar radius kepotong rapi */
}

/* Header */
.togel-table thead th {
    background: linear-gradient(180deg, #c9a24b, #8a6d2f);
    color: #1a1208; /* teks gelap di header emas */
    font-weight: 700;
    text-align: left;
    padding: 12px 14px;
    letter-spacing: 0.3px;
}

/* Sel */
.togel-table td {
    padding: 11px 14px;
    border-top: 1px solid rgba(201, 162, 75, 0.18);
    line-height: 1.5;
}

/* Kolom pertama = label emas */
.togel-table td:first-child {
    color: #d9b45a;
    font-weight: 600;
}

/* Zebra baris biar gampang dibaca */
.togel-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.22);
}

/* Hover */
.togel-table tbody tr:hover {
    background: rgba(201, 162, 75, 0.12);
}

/* Responsive: bisa di-scroll samping di HP */
@media (max-width: 600px) {
    .togel-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 14px;
    }
}
