.scroll-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-box {
  overflow-x: auto;
  white-space: nowrap;
  width: 300px;
  scroll-behavior: smooth;
  border: 1px solid #ccc;
}

.scroll-button {
  background-color: rgba(0, 0, 0, 0.0);
  color: white;
  border: 1px solid white;
  padding: 12px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.item {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #eee;
  margin-right: 10px;
  text-align: center;
  line-height: 100px;
}

/* 모바일(768px 이하)에서는 숨김 */
@media (max-width: 768px) {
  #scroll-left,
  #scroll-right {
    display: none;
  }
}
