/* Custom animations and styles */
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slideIn {
    animation: slideIn 0.3s ease-out;
}

/* Smooth transitions */
* {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-duration: 200ms;
    transition-timing-function: ease-in-out;
}

button {
    cursor: pointer;
    user-select: none;
}

button:active {
    transform: scale(0.95);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FDB863;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF9D5C;
}

/* Prevent flash of unstyled content */
#root {
    min-height: 100vh;
}