    body {
        background-color: #f3f4f6;
        font-family: 'Inter', sans-serif;
    }

    .table-container {
        max-height: calc(100vh - 270px);
        overflow-y: auto;
    }

    th {
        position: sticky;
        top: 0;
        background-color: #1a1a1a !important;
        color: #d4af37 !important;
        z-index: 10;
    }

    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: #d4af37;
        border-radius: 4px;
    }

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: #d4af37;
        box-shadow: 0 0 0 1px #d4af37;
    }

    .loader {
        border: 4px solid #f3f3f3;
        border-top: 4px solid #d4af37;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* =========================================
       PENYEMBUNYI BANNER HOSTING GRATIS (SILENT KILLER)
       ========================================= */
    /* Menyembunyikan div injeksi iklan dari hosting tanpa mendorong body aplikasi */
    img[src*="000webhost"],
    div[style*="z-index: 9999"],
    div[style*="z-index:9999999"],
    div.cpanel-banner-wrap {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
