/* Hide the sidebar search UI in GitBook theme. */
#book-search-input,
#book-search-results {
  display: none;
}

/* Hide empty GitBook search result panels on normal page views. */
#book-search-results .search-results {
  display: none;
}

/* Show search results only when the theme enters search mode. */
body.with-search #book-search-results .search-noresults {
  display: none;
}

body.with-search #book-search-results .search-results {
  display: block;
}

/* Let the long sidebar title wrap across multiple lines. */
.book-summary .summary > li:first-child > a.custom-link {
  display: block;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.3;
  word-break: break-word;
}
