.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;
}


/* black specific */

#left-panel > .content-container {
    direction: rtl; /* Changes the scrolling direction to right-to-left */
    overflow-y: scroll; /* Makes sure the scrollbar appears */
  }
  
#left-panel > .content-container > * {
    direction: ltr; /* Ensures the content inside still reads left-to-right */
 }


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

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

.custom-scrollbar::-webkit-scrollbar-track {
    background: #2e2e38; /* Slate-like background */
}

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

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

/* Scrollbar styling for Firefox */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #000 #2e2e38;
}
