/* ===== Styling Tabel hoverTable - Modern Orange UI yang Jelas ===== */
.hoverTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: #ff9900; /* Latar belakang oranye solid */
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    color: #ffffff; /* Warna teks putih */
}

.hoverTable th {
    background-color: #ff7e1b; /* Warna header lebih gelap */
    color: #ffffff;
    padding: 12px 16px;
    text-align: left;
    font-size: 1em;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #fff;
}

.hoverTable td {
    background-color: #ff9900;
    color: #ffffff;
    padding: 10px 16px;
    font-size: 0.95em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: background 0.2s ease;
}

.hoverTable tr:hover td {
    background-color: #e67e00; /* Warna hover sedikit lebih gelap */
}

/* Link dalam tabel */
.hoverTable a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px dotted #fff;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hoverTable a:hover {
    color: #000;
    background-color: #fff6d6;
    border-color: #000;
}

/* Responsif untuk layar kecil */
@media (max-width: 600px) {
    .hoverTable th,
    .hoverTable td {
        padding: 8px 12px;
        font-size: 0.9em;
    }
}

