body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0;
}

#_ejs_banner {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  z-index: 1;
}

#_ejs_banner img {
  height: 40px; /* Adjust the height as needed */
  margin-right: 10px;
}

#_ejs_banner-text {
  flex-grow: 1;
  text-align: center;
  font-size: 24px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #333; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#_ejs_banner button {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 10px;
}

#_ejs_banner button img {
  height: 24px; /* Adjust the size as needed */
}

#_ejs_container {
  display: flex;
  flex: 1;
  padding-top: 50px; /* Adjust this to the height of the banner */
}

iframe {
  border: none;
}

._ejs_hidden {
  display: none;
  width: 0;
  flex: 0;
}

#_ejs_toc {
  flex: 0;
  width: 30%;
  height: 100%;
  margin: 0 0 0 0;
  transition: width 0.3s;
}

#_ejs_content {
  flex: 1;
  transition: width 0.3s;
}

#ejs_footer {
  padding: 10px 20px;
  background-color: #f1f1f1;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

#ejs_footer img {
  vertical-align: middle;
  margin-right: 5px;
}

#ejs_footer a {
  text-decoration: none;
  color: #007bff;
  font-size: 1em;
}

#ejs_footer a:hover {
  text-decoration: underline;
}