.report-button{
  /* 原本為了縮小按鈕的設定 */
  display:inline-flex !important;
  width:auto !important;
  min-width:unset !important;
  padding:4px 6px;
  font-size:12px;
  line-height:1;

  /* ↓ 把 float 拿掉，改用絕對定位貼最右下 */
  right:8px;
  bottom:8px;
}
.contact-modal {          /* SweetAlert2 的外殼 */
  border-radius: 18px;
  box-shadow: 0 0 10px rgba(0,0,0,.45);
}

/* 連結高亮 & 滑鼠滑過效果 */
.swal-link {
  color: #4EA8FF;
  text-decoration: none;
}
.swal-link:hover { text-decoration: underline; }

/* 免責聲明字小一點、灰一點 */
.swal-disclaimer {
  font-size: 12px;
  line-height: 1.4;
  color: #aaa;
}
/* 外殼（含陰影、圓角） */
.swal2-popup.submission-modal{
  width: 95vw !important;      /* or 100vw 滿版 */
  max-width: 1200px !important;
}

/* 內部 textarea 也可拉得更寬更高 */
.big-textarea{
  min-height: 280px !important;
  width: 90% !important;      /* 填滿彈窗 */
  font-size: 16px;
}

/* 放大底部的提交 / 取消按鈕 */
.swal2-popup.submission-modal .swal2-actions button{
  min-width: 140px;            /* 每顆按鈕至少 140 px */
  padding: .75em 1.8em;
  font-size: 1.1rem;
}
/* 強制整頁 & SweetAlert2 外殼都不顯示捲軸 ------------------- */
html.swal2-height-auto,
body.swal2-height-auto,
.swal2-container{
  height: 100% !important;
  overflow: hidden !important;     /* ❶ 把多餘捲軸關掉 */
}

/* 保留滑動權限給公告內容 ------------------- */
.announce-modal .announce-wrapper{
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;   /* ❷ 手機慣性滑 */
  padding: 20px;
  text-align: left;
  scrollbar-width: none;
}
.announce-modal .announce-wrapper::-webkit-scrollbar{
  width: 0; height: 0;
}

/* 如要放大內文字體 */
.announce-modal .announce-wrapper p,
.announce-modal .announce-wrapper li{
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ddd;
}

/* 想讓圖片自適應 */
.announce-modal .announce-wrapper img{
  max-width: 100%;
  height: auto;
}
html, body{
  -ms-overflow-style: none;   /* IE / Edge (舊) */
  scrollbar-width: none;      /* Firefox */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar{
  display: none;              /* Chrome / Safari / Edge */
}
/* 讓 iframe 填滿彈窗，自己處理捲動 */
.policy-frame{
  border: none;
  width: 100%;
  height: calc(100vh - 120px); /* 標題列留 120px 可按需調整 */
  overflow: hidden;            /* iframe 內部自己管理 scrollbar */
}

.copyright-fixed{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  text-align:center;
  font-size:.9rem;
  padding:8px 0;
  color:#aaa;
  background:rgba(0,0,0,.4);   /* 深色半透明，可依主題自行調 */
  backdrop-filter: blur(6px);   /* 若想要毛玻璃效果 */
  z-index:999;
}
.dark-mode .copyright-fixed{ color:#ccc; }

 #bmc-wbtn {
    transform: scale(0.75);       /* 整體縮小 */
    transform-origin: bottom left;
  }
  
 .action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.action-buttons button {
  padding: 6px 12px;
  border: none;
  border-radius: 8px;
  background-color: #3a3b3c;
  color: #eee;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.action-buttons button:hover {
  background-color: #4e4f50;
}
.show-more-button {
  display: inline-block;
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  color: white;
  border: none;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 16px;
  cursor: pointer;
  margin: 8px 0 12px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.show-more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
