/* Styles du composant Modal */
/* Les styles de base (.modal-overlay, .modal-window, etc.) sont dans global.css */
/* Ce fichier contient les ajustements specifiques */

.modal-window {
  width: 560px;
}

.modal-header .btn-icon svg {
  width: 18px;
  height: 18px;
}

/* Variante large (pour les wizards, pickers) */
.modal-window.modal-lg {
  width: 800px;
}

.modal-window.modal-xl {
  width: 960px;
  max-height: 85vh;
}

/* Variante plein ecran mobile */
@media (max-width: 768px) {
  .modal-window {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
}
