/*
 * XPI Portal Custom Styles
 * styles.css
 */
body {
    font-family: 'Inter', sans-serif;
}

/* Custom scrollbar for dark mode */
/* For Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #1f2937; /* gray-800 */
}
::-webkit-scrollbar-thumb {
    background: #4b5563; /* gray-600 */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6b7280; /* gray-500 */
}

