/* Position the toggle button on the right */
.toggle-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  text-align: right;
}

/* Style the toggle button */
.toggle-btn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* Initially hide the info content */
.info-content {
  display: none;
  margin-top: 10px;
  padding: 15px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 5px;
}
