body {
  font-family: Arial, sans-serif;
  background-color: #ffc40b;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #e4e3e3;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-left: 3px solid #000000;
  border-right: 3px solid #000000;
}

.footer {
  padding: 16px;
  font-weight: bold;
  border-top: 3px solid black;
  background-color: #e4e3e3;
  text-align: center;
}

h1,
h3,
h5 {
  color: #000000;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.5em;
  margin-top: 20px;
}

h5 {
  font-size: 1.2em;
  margin-top: 10px;
}

h6 {
  font-size: 1em;
  color: #555;
  margin-top: 10px;
  line-height: 1.4;
}

p {
  color: #383838;
  line-height: 1.6;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.copy-link-icon {
  cursor: pointer;
  margin-right: 5px;
  color: #007bff;
  font-size: 1.2em;
}

.copy-link-icon:hover {
  color: #0056b3;
}

.api-section {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.api-description {
  margin-left: 4%;
  font-size: 1em;
  color: #555;
}

.api-parameters {
  list-style-type: none;
  padding: 0;
}

.api-parameters li {
  margin-bottom: 5px;
}

#tooltip {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
}

.toc-container {
  margin: 20px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.toc-item {
  margin: 5px 0 5px 30px;
  padding: 5px;
  color: #007bff;
  cursor: pointer;
}

.toc-item:hover {
  background-color: #e4e3e3;
}

.toc-item-active {
  font-weight: bold;
  color: #0056b3;
}

.footer {
  padding: 16px;
  font-weight: bold;
  border-top: 3px solid black;
  background-color: #e4e3e3;
  text-align: center;
}

ul.horizontal-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

ul.horizontal-list li {
  display: inline;
  margin: 10px;
}

.centered-image {
  display: block;
  margin: 0 auto;
  max-width: 40%;
  height: auto;
  margin-bottom: 20px;
}
