/* DRV Popup — structural styles only */

#drv-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#drv-popup-overlay.drv-popup-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#drv-popup-modal {
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s ease;
}

#drv-popup-overlay.drv-popup-visible #drv-popup-modal {
  transform: translateY(0);
}

#drv-popup-close {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 0;
}
