/* Custom styles to supplement Tailwind */

body {
    font-family: 'Inter', sans-serif;
}

/* Smooth color transitions for the ramp items */
.ramp-item {
    transition: background-color 0.3s ease;
}

/* Custom scrollbar for results if needed, though we are using grid */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}
