
.float-animation {
    animation: float 3s ease-in-out infinite;
}
/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #8B1874 !important;
}
/* Swiper Pagination Dots */
.swiper-pagination-bullet {
    background: #8B1874 !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
}
.toast {
    min-width: 300px;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out forwards;
}
.toast.success {
    background-color: #4CAF50;
    color: white;
}
.toast.error {
    background-color: #EF4444;
    color: white;
}
.toast.info {
    background-color: #3B82F6;
    color: white;
}
/* Custom Styles */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fadeOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}