/* 사전 점검 공지 모달 (전역) */
.notice-modal-backdrop {
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.notice-modal-backdrop.show {
  display: flex;
}
.notice-modal {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.notice-modal-title-ref {
  margin: 0;
  padding: 22px 24px 18px;
  font-size: 22px;
  font-weight: 700;
  color: #e65a41;
  text-align: center;
}
.notice-modal-body-ref {
  padding: 0 24px 20px;
}
.notice-schedule-panel {
  background: #fff;
  border-left: 4px solid #93c5fd;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.notice-schedule-cols {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.notice-schedule-col {
  flex: 1;
  min-width: 140px;
}
.notice-schedule-label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}
.notice-schedule-value {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.notice-work-panel {
  background: #ebf5ff;
  border-radius: 12px;
  padding: 18px 20px 20px;
}
.notice-work-heading {
  margin: 0 0 14px 0;
  font-size: 17px;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
}
.notice-work-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.notice-work-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #1f2937;
  line-height: 1.5;
}
.notice-work-list li:last-child {
  margin-bottom: 0;
}
.notice-work-check {
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}
.notice-modal-footer {
  padding: 16px 24px 22px 24px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  border-top: 1px solid #f0f0f0;
}
.notice-btn {
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
}
.notice-btn-secondary {
  background: #f2f4f7;
  color: #344054;
}
.notice-btn-primary {
  background: #1f2937;
  color: #fff;
}
@media (max-width: 480px) {
  .notice-modal-footer {
    flex-direction: column;
  }
  .notice-btn {
    width: 100%;
  }
}
