#notice-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

#notice-modal {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 1.75rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  position: relative;
}

#notice-modal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

#notice-modal-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#notice-modal-icon i {
  color: #2563a8;
  font-size: 16px;
}

#notice-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

#notice-modal hr {
  border: none;
  border-top: 1px solid #918f8f;
  margin: 0 0 1rem;
}

#notice-modal-body {
  font-size: 15px;
  line-height: 1.75;
  color: #2c2c2c;
}

#notice-modal-body p {
  margin: 0 0 0.75rem;
}

#notice-modal-body p:last-child {
  margin-bottom: 0;
  font-size: 13px;
  color: #555555;
}

#notice-modal-body a {
  color: #2563a8;
  text-decoration: none;
}

#notice-modal-body a:hover {
  text-decoration: underline;
}

#notice-modal-body code {
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: #333;
}

#notice-modal-footer {
  margin-top: 1.25rem;
  text-align: right;
}

#notice-modal-close {
  padding: 8px 20px;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  background: #ffffff;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.15s ease;
}

#notice-modal-close:hover {
  background: #f0f0f0;
}

#notice-modal-close-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 28px;
  height: 28px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background: #ffffff;
  color: #555555;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s ease;
}

#notice-modal-close-x:hover {
  background: #f0f0f0;
  color: #1a1a1a;
}
