/* ==========================================================================
   PHROZEN HELP CENTER - BASE STYLES MODULE  
   ========================================================================== */

/* Base 模塊載入成功 ✅ */

/* ==========================================================================
   BASE STYLES - 不依賴 Zendesk 變數的基礎樣式
   - 工具類別、容器、選擇按鈕等
   - 依賴 Zendesk 變數的樣式已移回 style.css
   ========================================================================== */

.home-title {
  text-align:center;
  font-size:36px;
  font-weight:700;
}

.select-btns {
  display:flex;
  flex-wrap:wrap;
 justify-content: center;
  margin-bottom:6rem;
}
.select-btn {
  margin:8px 0.5rem;
  font-size: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-style: normal;
  font-weight: 500;
	height: 45px;
  border-radius: 60px;
	background: #434C57;
  display:flex;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.15); 
  transition: box-shadow 0.3s ease-in-out;
}

.select-btn:hover {
	background: #59626A;
}

.select-btns input[type="radio"]:checked + label {
    background: #A1AFBC; /* selected color */
}

.select-btns input[type="radio"] {
  display: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

.container-divider {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

.visibility-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}