.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
}

.modal {
  width: 100%;
  max-width: 28rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--color-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal__title {
  margin-top: 0;
}

.modal__body {
  color: var(--color-text);
}

.modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
