.vg-phone-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.vg-phone-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0 10px;
  height: 46px;
  border: 1px solid #e5e7eb;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: #f9fafb;
  font-weight: 600;
  color: #111827;
}

.vg-phone-row .form-control {
  border-radius: 0 8px 8px 0 !important;
}

.vg-ux-panel {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
}

.vg-ux-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 22px 18px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  pointer-events: auto;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.26s ease;
}

.vg-ux-panel-in .vg-ux-card {
  transform: translateY(0);
  opacity: 1;
}

.vg-ux-panel-leave .vg-ux-card {
  transform: translateY(120%);
  opacity: 0;
}

.vg-ux-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: #6b7280;
}

.vg-ux-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.vg-ux-text {
  margin: 0 0 14px;
  font-size: 13px;
  color: #374151;
}

.vg-ux-actions {
  display: flex;
  gap: 8px;
}

.vg-ux-actions .btn {
  flex: 1;
  min-height: 42px;
}

