.qr-codes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.qr-code {
  margin: 10px;
  text-align: center;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.qr-code:hover {
  transform: translateY(-5px);
}

.qr-number {
  font-weight: bold;
  color: #010100;
  margin-bottom: 10px;
}

.qr-image {
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.gradient-bg {
  background: linear-gradient(to right, #010100, #c38d15);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}

.horizontal-list {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

.horizontal-list li {
  list-style: none; /* Remove default list style */
  margin-right: 20px; /* Adjust spacing between items */
}
