/* Custom scrollbar styling for a darker theme */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #4b5563; /* Gray 600 */
    border-radius: 4px;
}
::-webkit-scrollbar-track {
    background: #1f2937; /* Gray 800 */
}

/* Utility to hide elements when needed */
.content-hidden {
    display: none !important;
}

/* Drawer-specific transitions */
#auth-drawer {
    transition: transform 0.3s ease-in-out;
}
#auth-drawer-backdrop {
    transition: opacity 0.3s ease-in-out;
}