.blurred {
    filter: blur(5px);
}
.transition-width {
    transition: width 0.5s ease-in-out;
}
.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.fade-in.visible {
    opacity: 1;
}
.menu-description {
    display: none;
    transition: opacity 0.3s;
}
.disabled {
    pointer-events: none;
}

/* white specific */

/* Custom scrollbar for Webkit-based browsers (e.g., Chrome, Safari, including Mobile Safari) */
.custom-scrollbar {
    scrollbar-width: thin; /* Firefox only */
    scrollbar-color: #9b9b9b #fff; /* Firefox only */
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px; /* Make the scrollbar narrower */
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #fff; /* White background */
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #9b9b9b; /* Dark gray scrollbar thumb */
    border-radius: 4px; /* Rounded corners for a more elegant look */
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #888; /* Lighter shade on hover for better visual feedback */
}

/* Scrollbar styling for Firefox */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #9b9b9b #fff;
}
