/* Aeolo — custom styles (Tailwind utilities handle the rest) */
.custom-scrollbar::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}
.glow-indigo {
    box-shadow: 0 0 60px -15px rgba(79, 70, 229, 0.5);
}
.story-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
