/* Custom styles for NPWP website */
.App {
    min-height: 100vh;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #1a5575;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #174563;
}