/* 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;
}