/* Custom styles and overrides */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* slate-300 */
    border-radius: 99px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; /* slate-400 */
}

/* Dark mode overrides for scrollbar */
.dark .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #475569; /* slate-600 */
}

.dark .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #64748b; /* slate-500 */
}
