.v-tp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
  z-index: 99999;
  backdrop-filter: blur(2px); /* Efecto moderno */
}

.v-tp-sheet {
  width: 100%;
  background: #f8f9fa;
  border-radius: 20px 20px 0 0;
  padding-bottom: 30px;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.v-tp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.v-tp-ok {
  color: #007bff;
  font-weight: bold;
  border: none;
  background: none;
  font-size: 16px;
}
.v-tp-title {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
}

.v-tp-body {
  position: relative;
  display: flex;
  justify-content: center;
  height: 225px; /* 45px * 5 items visibles */
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 40%,
    black 60%,
    transparent
  );
}

.v-tp-selection-bar {
  position: absolute;
  top: 90px; /* (225 - 45) / 2 */
  left: 10%;
  right: 10%;
  height: 45px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  pointer-events: none;
}

.v-tp-wheel {
  flex: 1;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  padding: 90px 0; /* Padding exacto para que el primero y último centren */
  box-sizing: border-box;
}

.v-tp-wheel::-webkit-scrollbar {
  display: none;
}

.v-tp-item {
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 24px;
  scroll-snap-align: center;
  color: #333;
}

.v-tp-separator {
  line-height: 225px;
  font-size: 24px;
  font-weight: bold;
}
