/* Styles for developer notes panel */
#dev-notes {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #2d2d2d;
  color: #f5f5f5;
  padding: 20px;
  border: 2px solid #007acc;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  margin: 20px;
}

#dev-notes h2 {
  color: #007acc;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  margin-top: 0;
}

#dev-notes h3 {
  color: #7ac;
  margin-top: 20px;
  margin-bottom: 10px;
}

.dev-section {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #333;
  border-radius: 5px;
}

#dev-notes code {
  background-color: #222;
  color: #f9c46b;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
}

#dev-notes ul, #dev-notes ol {
  padding-left: 25px;
}

#dev-notes li {
  margin-bottom: 8px;
}

#hide-dev-notes {
  background-color: #007acc;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 15px;
  font-weight: bold;
}

#hide-dev-notes:hover {
  background-color: #005a9c;
}

