/* 1. Import Kumbh Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');

/* 2. Force the font globally across all elements */
* {
    font-family: 'Kumbh Sans', sans-serif !important;
}

/* Glassmorphism Panel Utilities */
.glass-panel {
    background: rgba(20, 28, 47, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Webkit Scrollbars for a Native App Feel */
.custom-scrollbar::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Prevent text highlighting where not needed */
.no-select {
    user-select: none;
    -webkit-user-select: none;
}



/* ==========================================
   GLOBAL DESKTOP SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #F1F5F9; /* Matches slate-100 */
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1; /* Nice slate-300 color */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94A3B8; /* Darkens to slate-400 on hover */
}

/* ==========================================
   CUSTOM CONTAINER SCROLLBARS (.custom-scrollbar)
   ========================================== */
.custom-scrollbar::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #CBD5E1; 
    border-radius: 999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94A3B8; 
}




/* ==========================================
   MOBILE APP FEEL: HIDE SCROLLBARS
   ========================================== */
@media (max-width: 768px) {
    /* Hide Webkit (Chrome, Safari, iOS, Android) scrollbars */
    ::-webkit-scrollbar,
    .custom-scrollbar::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    /* Hide Firefox scrollbars */
    * {
        scrollbar-width: none !important;
    }
}