/* assets/css/notice_ai.css */
body.modal-open {
  overflow: hidden;
}

.notice-ai-modal {
  display: none;
  position: fixed;
  inset: 0;
  padding: 20px;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
}

.notice-ai-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-ai-box {
  width: min(900px, 96vw);
  max-height: 86vh;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.notice-ai-head {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e7e7e7;
}

.notice-ai-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.notice-ai-close {
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
}

.notice-ai-body {
  padding: 14px 16px;
  overflow: auto;
}

.notice-ai-status {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.notice-ai-output {
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.45;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 10px;
  padding: 12px;
}

.notice-ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #b9d6ff;
  background: #eaf3ff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: #0b3d91;
  transition: transform 0.08s ease-in-out;
}

.notice-ai-btn:hover {
  background: #dbeeff;
  transform: translateY(-1px);
}

.notice-ai-btn:active {
  transform: translateY(0px);
}


