/* force-show.css - 强制显示搜索框和目录 */

/* 强制显示目录按钮（三条横线） */
.book .book-header .fa-bars,
.book .book-header .dropdown-toggle {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 强制显示搜索框和搜索图标 */
.book .book-header .fa-search,
.book .book-header .search-input {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 隐藏信息图标 (i 图标) */
.book .book-header .fa-info-circle,
.book .book-header a[aria-label*="info"],
.book .book-header a[aria-label*="Info"],
.book .book-header a[title*="info"],
.book .book-header a[title*="Info"],
.book .book-header .btn[aria-label*="info"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: none !important;
}

/* 隐藏所有其他图标 */
.book .book-header .fa-share-alt,
.book .book-header .fa-edit,
.book .book-header .fa-code,
.book .book-header .fa-facebook,
.book .book-header .fa-github,
.book .book-header .fa-twitter,
.book .book-header .fa-download,
.book .book-header .fa-info-circle,
.book .book-header .fa-history {
  display: none !important;
}

/* 确保工具栏布局正确 */
.book .book-header .pull-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

/* 确保搜索框有正确宽度 */
.book .book-header .search-input {
  width: 200px !important;
  max-width: 100% !important;
}

/*播放切换按钮 */
.toggle-btn1, .toggle-btn2, .toggle-btn3 {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 8px;
  margin-right: 6px;
}

.toggle-btn1:hover, .toggle-btn2:hover, .toggle-btn3:hover {
  background: #f0f0f0;
}

/* PDF容器，默认隐藏 */
#pdfContainer {
  display: none;
  margin-top: 20px;
}
		
/* 音频容器，默认隐藏 */
#audioContainer {
  display: none;
  margin-top: 20px;
}
		
/* 给音频播放器容器设置宽度 */
audio {
   /* display: block;*/
    width: 600px; /* 你想要的宽度 */
   /* 可选：居中显示 */
    margin: 0 auto;
}

/* 视频容器，默认隐藏 */
#videoContainer {
  display: none;
  margin-top: 20px;
}
