/* General styling for the info section */
#info-section {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header styling */
.contents-header {
  color: #71BF43;
  font-size: 24px;
  border-bottom: 2px solid #71BF43;
  padding-bottom: 5px;
}

#info-section h2 {
  border-bottom: 2px solid #71BF43;
  padding-bottom: 5px;
  color: #333;
}

#info-section h3 {
  color: #333;
}

/* Link styling */
#info-section a {
  color: #71BF43;
  text-decoration: none;
}

#info-section a:hover {
  text-decoration: underline;
}

/* Unordered list styling */
#info-section ul {
  list-style-type: disc;
  margin-left: 20px;
}

#info-section ul li {
  margin-bottom: 5px;
}

/* Back to top link */
#info-section .back-to-top {
  text-align: right;
}

/* Special list styling for sandbox batteries */
#info-section ul.sandbox-list {
  font-family: Arial, sans-serif;
}

#info-section ul.sandbox-list li span {
  display: inline-block;
  width: 170px;
}

#info-section .sandbox-section {
  margin-top: 50px;
}

/* Preformatted block styling */
#info-section pre {
  background-color: #f4f4f4;
  color: #333;
  padding: 15px;
  border-radius: 5px;
  font-family: monospace;
  overflow-x: auto;
}

/* Blockquote styling */
#info-section blockquote {
  border-left: 4px solid #71BF43;
  padding: 10px;
  background-color: #f9f9f9;
}

/* Final divider line */
#info-section .final-divider {
  background-color: #71BF43;
  height: 6px;
  width: 100%;
  margin-top: 40px;
}
