/* Horizontal Scroll Test Styles */
body.horizontal-scroll-page {
  overscroll-behavior: none;
  margin: 0;
  padding: 0;
}

.horizontal-scroll-container {
  overscroll-behavior: none;
  width: 600%;
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
}

.horizontal-scroll-container .panel {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

/* Panel colors */
.panel.green { background: #4CAF50; }
.panel.purple { background: #9C27B0; }
.panel.orange { background: #FF9800; }
.panel:not(.green):not(.purple):not(.orange) { background: #2196F3; }

.description.panel {
  background: #333;
  color: white;
  text-align: center;
}

.scroll-down {
  margin-top: 20px;
  font-size: 1rem;
}

.arrow {
  display: inline-block;
  margin-left: 10px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}