@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
}

.selection\:bg-slate-200 ::selection {
    background-color: #e2e8f0;
}
