.fgr-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}
.fgr-modal.is-open { display: block; }

.fgr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.fgr-modal__panel {
  position: relative;
  width: min(860px, calc(100% - 32px));
  max-height: calc(100% - 64px);
  overflow: auto;
  margin: 32px auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px 20px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}

.fgr-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 40px;
  cursor: pointer;
}

.fgr-title { margin: 0 0 10px; font-size: 18px; }
.fgr-status { margin: 8px 0 14px; padding: 10px 12px; border-radius: 8px; background: #f5f5f5; }
.fgr-status.is-error { background: #ffeaea; }
.fgr-status.is-ok { background: #eef8ee; }

.fgr-dateList { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.fgr-dateBtn {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}
.fgr-dateBtn:hover { background: #fafafa; }

.fgr-formwrap { margin-top: 18px; padding-top: 14px; border-top: 1px solid #eee; }
.fgr-footnote { margin-top: 14px; color: #666; }
