/* 共用基本樣式 */
.ads-display-banner {
  position: fixed; /* 固定定位 */
  top: 0;
  width: 120px;          /* 廣告欄寬度，可調整 */
  height: 100vh;         /* 撐滿整個視窗高度 */
  background-color: rgba(255, 255, 255, 0.9); /* 半透明背景，方便觀看，可自訂 */
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  z-index: 9999;         /* 足夠高，覆蓋所有內容 */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
  font-size: 14px;
  color: #333;
  user-select: none;     /* 防止文字被誤選 */
}

/* 左側 */
.ads-display-left {
  left: 0;
  border-right: 1px solid #ccc;
}

/* 右側 */
.ads-display-right {
  right: 0;
  border-left: 1px solid #ccc;
}

/* 手機/小螢幕可考慮隱藏 */
@media (max-width: 768px) {
  .ads-display-banner {
    display: none;
  }
}