/* assets/css/style.css */
body {
    font-family: 'Inter', sans-serif;
}

.font-display {
    font-family: 'Inter', sans-serif;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Custom scrollbar for better look */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
::-webkit-scrollbar-thumb {
    background: #10b981; /* emerald-500 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669; /* emerald-600 */
}
