.mtPopupBackdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 20000;
}

.mtPopupBackdrop.is-open {
  display: flex;
}

.mtPopupModal {
  width: min(500px, 92vw);
  background: rgba(0, 0, 0, 0.78);
  border: 4px groove rgba(254, 255, 229, 0.35);
  color: rgba(200, 162, 75, 0.95);
  font-family: "Courier New", monospace;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.65);
}

.mtPopupTopbar {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(212, 177, 74, 0.25);
}

.mtPopupTitle {
  font-size: 12px;
  letter-spacing: 2px;
}

.mtPopupBody {
  padding: 12px;
  display: grid;
  gap: 10px;
}

.mtPopupText {
  color: rgba(200, 162, 75, 0.78);
  font-size: 12px;
  line-height: 1.4;
  white-space: pre-wrap;
}

.mtPopupInput {
  width: 100%;
  padding: 7px 9px;
  background: #0c0c0c;
  border: 1px solid rgba(212, 177, 74, 0.3);
  color: rgba(232, 1, 1, 0.9);
  font-family: "Courier New", monospace;
}

.mtPopupActions {
  display: flex;
  gap: 10px;
}

.mtPopupBtn {
  display: inline-block;
  padding: 7px 10px;
  border: 3px outset #c0c0c0;
  background: #bfbfbf;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  font-family: "Courier New", monospace;
  font-size: 11px;
}

.mtPopupBtn:active {
  border-style: inset;
}
