/* Custom scrollbar for canvas horizontal scroll wrapper */
#game-container .overflow-x-auto::-webkit-scrollbar {
    height: 8px;
}
#game-container .overflow-x-auto::-webkit-scrollbar-track {
    background: transparent;
}
#game-container .overflow-x-auto::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
.dark #game-container .overflow-x-auto::-webkit-scrollbar-thumb {
    background: #475569;
}
