/* css/halaman-statistik.css */
/* Style untuk halaman-statistik.php */
/* (VERSI INDEPENDENT - Tidak perlu style.css) */

/* --- TATA LETAK TABEL --- */
.stats-table-container {
    padding: 1.5rem; /* Beri padding di dalam .content-box */
    overflow-x: auto; /* Memastikan tabel bisa scroll di HP */
}

.stats-table {
    width: 100%;
    border-collapse: collapse; /* Hapus spasi antar border */
}

.stats-table th,
.stats-table td {
    padding: 1rem;
    border: 2px solid #222222; /* Border Hitam */
    text-align: left;
    vertical-align: top; /* Jaga agar konten rata atas */
    font-size: 1.2rem;
    color: #222222; /* Teks Hitam */
}

.stats-table thead {
    background: #F8F8F8; /* Latar header tabel */
}

.stats-table th {
    font-size: 1.5rem;
    color: #854F2B; /* Cokelat (Dirt) */
}

.stats-table tbody tr:nth-child(even) {
    background: #F9F9F9; /* Zebra striping tipis */
}

/* --- STYLE SEL KHUSUS --- */
.stats-table .rank-cell {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    width: 80px;
    color: #3B6324; /* Hijau Tua */
}

.stats-table .name-cell {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222222;
}

.stats-table .desc-cell {
    color: #777; /* Abu-abu */
    font-size: 1.1rem;
    line-height: 1.4;
}

.stats-table .count-cell {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
    width: 200px;
    color: #4C7F2F; /* Hijau (Grass) */
}

/* Sel saat tabel kosong */
.empty-cell {
    text-align: center;
    padding: 2rem;
    font-size: 1.3rem;
    color: #777;
}
