.overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  z-index: 200;
}

.wrapper {
  position: fixed;
  inset: 0;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}

.modal {
  pointer-events: auto;
  width: 100%;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eeeeee;
  flex-shrink: 0;
}

.title {
  font-family: var(--font-gotham);
  font-size: 15px;
  font-weight: 700;
  color: var(--gris-fonce);
}

.closeBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--gris-moyen);
  cursor: pointer;
}

.closeBtn:hover {
  background: var(--gris-clair);
  color: var(--gris-fonce);
}

.body {
  padding: 20px;
  overflow-y: auto;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid #eeeeee;
  flex-shrink: 0;
}
