/* FindYourNikkah Admin — custom styles */
/* Tailwind CDN covers utilities; this file holds only what Tailwind cannot. */

/* Smooth scrollbar */
* { scrollbar-width: thin; scrollbar-color: #e2e8f0 transparent; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #cbd5e1; }

/* Prevent layout shift while Tailwind CDN loads */
body { font-family: ui-sans-serif, system-ui, -apple-system, sans-serif; }

/* Table row hover transitions */
tr { transition: background-color 0.1s; }

/* Sidebar active link indicator */
.nav-active { position: relative; }
.nav-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: #1FA5A9;
    border-radius: 0 2px 2px 0;
}

/* Chart bar tooltip z-index fix */
.group:hover { z-index: 10; }
