/* Global Custom Styles */
/* Component styles are now in components/*.css */
/* Page styles are now in pages/*.css */

/* Enable scrollbars when needed */
html,
body {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

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

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