/* NextGen Admin Panel Custom Styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #09090b;
    color: #f4f4f5;
    overflow: hidden;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #111114; 
}
::-webkit-scrollbar-thumb {
    background: #ec4899; 
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #db2777;
}

/* Sidebar Custom Styling */
.admin-sidebar {
    background: #0d0d11;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #ec4899 #111114;
}

/* Main Content Area Styling */
.admin-main {
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #ec4899 #111114;
}

/* Glassmorphic Admin Cards */
.admin-card {
    background: rgba(24, 24, 27, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
    transition: all 0.2s ease;
}
.nav-link:hover, .nav-link.active {
    background: rgba(236, 72, 153, 0.12);
    color: #ec4899;
    border-left: 3px solid #ec4899;
}
