.modal-overlay {
  position: fixed;
  animation: fadeIn 0.2s ease-out;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.modal-window {
  background: white;
  animation: scaleIn 0.2s ease-out;
  padding: 24px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
