#mr_modal_overlay{
  position:fixed;
  left:0; top:0; right:0; bottom:0;
  background:rgba(0,0,0,0.4);
  z-index:9999999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}
#mr_modal{
  background:#fff;
  padding:16px;
  border-radius:6px;
  max-width:480px;
  width:100%;
  box-shadow:0 6px 24px rgba(0,0,0,0.2);
  position:relative;
}
#mr_modal h3{ margin:0 0 8px; font-size:18px; }
#mr_modal #mr_selected{
  background:#f8f9fa;
  padding:8px;
  border:1px solid #e9ecef;
  border-radius:4px;
  max-height:120px;
  overflow:auto;
  white-space:pre-wrap;
  margin-bottom:8px;
}
#mr_modal textarea{ width:100%; box-sizing:border-box; }
#mr_close{
  position:absolute;
  right:12px;
  top:8px;
  border:0;
  background:transparent;
  font-size:20px;
  cursor:pointer;
}

