.scrollable-menu {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 5px;
  display: flex;
  scroll-behavior: smooth;
}

.scrollable-menu::-webkit-scrollbar {
  height: 5px;
}

.scrollable-menu::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.scrollable-menu::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.scrollable-menu .item {
  display: inline-block;
  float: none !important;
  flex-shrink: 0;
}

/* Add scroll indicators when content overflows */
.menu-container {
  position: relative;
}

.scroll-indicator {
  position: absolute;
  top: 0;
  height: 100%;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

.scroll-indicator.left {
  left: 0;
  background: linear-gradient(to right, rgba(27, 28, 29, 0.8), transparent);
}

.scroll-indicator.right {
  right: 0;
  background: linear-gradient(to left, rgba(27, 28, 29, 0.8), transparent);
}