/* Custom styles to supplement Tailwind */

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f8fafc; 
}
::-webkit-scrollbar-thumb {
    background: #e2e8f0; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1; 
}

/* Ensure tap highlighting is hidden on mobile */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Montserrat for Headings if not handled by Tailwind */
h1, h2, h3, .font-display {
    font-family: 'Montserrat', sans-serif;
}

/* Custom Utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Card Micro-interactions */
.active-scale:active {
    transform: scale(0.97);
}

.transition-soft {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
