/* Custom animations for toasts */
@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Design card hover effect */
.design-card:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

/* Progress bar animation */
.progress-fill {
    transition: width 0.5s ease;
}
