/* 
 * Centralized Modal Styles
 * Used across all portals for consistent modal appearance
 */

/* Base modal overlay styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
}

/* Modal iframe styling */
.modal-iframe {
  width: 100%;
  max-width: 600px;
  height: 90vh;
  max-height: 800px;
  border: none;
  border-radius: 16px;
  background: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .modal-overlay {
    padding: 0.5rem;
  }
  
  .modal-iframe {
    height: 95vh;
    max-height: none;
    border-radius: 12px;
  }
}