.vcarousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 150px; /* Höhe kann angepasst werden */
  border: 1px solid white;
}

.vcarousel-track {
  position: relative;
}

.vcarousel-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 148px;
  opacity: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  font-size: 2rem;
  border-radius: 8px;
  transition: opacity 0.6s ease;
  box-sizing: border-box;
}

.vcarousel-item.vcarousel-active {
  opacity: 1;
  z-index: 1;
}
