/* Wandoro - Pure Tailwind CSS - No custom classes */
/* All styling is done via Tailwind utility classes */

/* Only keeping essential custom scrollbar for trip planner */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #45c2c2 0%, #1f4b8c 100%);
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3aa8a8 0%, #183a6f 100%);
}
