/* assets/css/app.css */
.odd-btn.selected {
    @apply ring-2 ring-primary bg-primary/80 text-white transform scale-105;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}
.animate-fade {
    animation: fadeIn 0.4s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* STICKY SIDEBARS */
@media (min-width: 1024px) {
    .left-sidebar-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
    }
    .right-sidebar-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
    }
}