/* Hide visible scrollbars inside the Excalidraw iframe (keep scrolling enabled). */
.excalidraw,
.excalidraw * {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}

.excalidraw *::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

