/* ==========================================================
   FONTS
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --app-font: 'Inter', -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    font-family: var(--app-font);
}


/* ==========================================================
   SHARED ANIMATIONS
========================================================== */

@keyframes ai-shimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* ==========================================================
   GENERIC SCROLLBARS
========================================================== */

.solid-scrollbar {
    background-color: #f5f5f5;
    overflow: auto;
}

.solid-scrollbar::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.solid-scrollbar::-webkit-scrollbar-track {
    background: #ebebeb;
}

.solid-scrollbar::-webkit-scrollbar-thumb {
    background: #c2c2c2;
    border-radius: 6px;
}

.solid-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

