/* Custom styles for the carousel */
.carousel-slide {
    position: relative;
}

/* Animation for slide transitions */
@keyframes fadeIn {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.carousel-slide.active {
    animation: fadeIn 0.5s ease-in-out;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

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