/*
 * General body and wrapper styles
 */
.scroll-wrapper-new {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}

/*
 * New Card Styles (Updated for transparency and hover effect)
 */
.scroll-container-new {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
  max-width: 90%;
}

.scroll-item-new {
  min-width: 160px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #1a2d59;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.scroll-item-new:hover {
  background: linear-gradient(135deg, #0e1e3e, #1a2d59);
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.scroll-container-new::-webkit-scrollbar {
  height: 8px;
}

.scroll-container-new::-webkit-scrollbar-thumb {
  background-color: #2a5298;
  border-radius: 10px;
}