/* gpu17_tabel.css - versi final kontras & tegas */

/* =========================
   Styling Global Tabel GPU17
========================= */

/* Tabel utama */
table.gpu17-tabel {
    font-size: 15px;
    line-height: 1.5;
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* =========================
   HEADER (Hitam + Putih)
========================= */
table.gpu17-tabel thead th {
    font-weight: 700;
    color: #ffffff;                 /* teks putih */
    background-color: #000000;      /* hitam pekat */
    text-align: center;
    vertical-align: middle;
    padding: 12px 10px;
    border: 1px solid #444;
    border-bottom: 3px solid #222;
    text-transform: uppercase;
}

/* =========================
   BODY TABEL
========================= */
table.gpu17-tabel tbody td {
    padding: 8px 10px;
    vertical-align: middle;
    color: #2d3436;
    font-weight: 500;
}

/* Nama tebal */
table.gpu17-tabel tbody td.nama {
    font-weight: bold;
}

/* =========================
   ZEBRA STRIPING (LEBIH KONTRAS)
========================= */
table.gpu17-tabel tbody tr:nth-child(odd) {
    background-color: #ffffff;      /* putih */
}

table.gpu17-tabel tbody tr:nth-child(even) {
    background-color: #e3f2fd;      /* biru muda mencolok */
}

/* =========================
   HOVER EFFECT
========================= */
table.gpu17-tabel tbody tr:hover {
    background-color: #ffeaa7;      /* kuning soft */
    transition: 0.2s;
}

/* =========================
   BORDER GRID (BIAR KAYAK EXCEL)
========================= */
table.gpu17-tabel th,
table.gpu17-tabel td {
    border: 1px solid #dcdde1;
}

/* =========================
   FORM & KOMPONEN TAMBAHAN
========================= */

/* Kolom toggle */
.form-check-input {
    transform: scale(1.2);
    margin-right: 8px;
}

/* Badge status */
.badge-active {
    background-color: #28a745;
    color: #fff;
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 12px;
}

.badge-nonactive {
    background-color: #e74c3c;
    color: #fff;
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 12px;
}

/* Tombol aksi */
table.gpu17-tabel .btn {
    padding: 4px 8px;
    font-size: 13px;
}

/* Text wrap untuk kolom panjang */
table.gpu17-tabel td {
    word-wrap: break-word;
}




/*MENU BAR*/
/* =========================
   MENU LEBIH JELAS & TEGAS
========================= */

/* Menu utama */
.navigation-menu > li > a {
    font-size: 16px;          /* lebih besar */
    font-weight: 600;         /* lebih tebal */
    letter-spacing: 0.5px;    /* lebih terbaca */
    padding: 14px 18px;       /* lebih lega */
}

/* Submenu */
.navigation-menu .submenu li a {
    font-size: 15px;          /* sedikit lebih kecil dari main */
    font-weight: 500;
    padding: 12px 20px;
}

/* Icon biar lebih jelas */
.navigation-menu i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Hover biar kontras */
.navigation-menu > li > a:hover {
    background-color: #dfe6e9;
    color: #000;
}

/* Active menu lebih mencolok */
.navigation-menu a.active-menu {
    background-color: #0984e3 !important;
    color: #fff !important;
    font-weight: 700;
}

/* Submenu hover */
.navigation-menu .submenu li a:hover {
    background-color: #74b9ff;
    color: #000;
}

/* Jarak antar menu biar tidak sempit */
.navigation-menu li {
    margin-bottom: 2px;
}