/* ══════════════════════════════════════════════════
   農家樂 站內通知 — notice.css
   顏色全部寫死，不依賴其他檔的 CSS 變數
   （掛在任何 viewer 頁面都要能正常顯示）
   ══════════════════════════════════════════════════ */

.ag-notice-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 18, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 20px;
}

.ag-notice-card {
  background: #111827;
  border: 1px solid #2d6ca8;
  border-radius: 14px;
  padding: 24px 26px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}

.ag-notice-title {
  color: #e8b84b;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.ag-notice-body {
  color: #c8d8e8;
  font-size: .92rem;
  line-height: 1.75;
  white-space: pre-wrap;   /* 保留管理員輸入的換行 */
  word-break: break-word;
  margin-bottom: 20px;
}

.ag-notice-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: #1e3a5a;
  border: 1px solid #2d6ca8;
  border-radius: 8px;
  color: #c8d8e8;
  font-size: .9rem;
  cursor: pointer;
  transition: all .15s;
}
.ag-notice-btn:hover    { background: #254a70; color: #a8d0f0; }
.ag-notice-btn:disabled { opacity: .5; cursor: default; }
