/* Custom Scrollbar for the menu */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #374151;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #6B7280;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

/* Ensure canvas takes full remaining space */
#canvas-container {
    width: 100%;
    height: 100%; /* Fill the flex child */
    overflow: hidden;
}

canvas {
    display: block;
}
