.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100% - 32px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-elevated);
  padding: 14px 16px 16px;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.modal__header h2 {
  font-size: 1.05rem;
}

.modal__body {
  margin-top: 4px;
}

.modal[aria-hidden="false"] {
  display: flex;
}
