.modal-source {
  cursor: pointer;
}

.modal-source:focus-visible {
  outline: 2px solid #0b5fff;
  outline-offset: 2px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.56);
}

.modal-panel {
  position: relative;
  max-width: min(90vw, 960px);
  max-height: 85vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.modal-body {
  padding: 1.25rem;
}

.modal-close {
  position: sticky;
  top: 0;
  left: 100%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: #1f2937;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  margin: 0.6rem 0.6rem 0 auto;
}

.modal-close:focus-visible {
  outline: 2px solid #0b5fff;
  outline-offset: 2px;
}
