/*
 * hide-scrollbar.css
 * Sembunyikan scrollbar di semua browser
 * tanpa menghilangkan fungsi scroll
 */

/* Chrome, Safari, Opera, Edge (Chromium) */
::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Firefox */
* {
    scrollbar-width: none !important;
}

/* IE & Edge lama */
* {
    -ms-overflow-style: none !important;
}

/* Body utama */
html, body {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
