/* Note Graph Styles */

#note-graph-container {
  margin-top: 2em;
  padding: 1em;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  background: #f6f8fa;
}

#note-graph-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5em;
}

#note-graph-header h3 {
  margin: 0;
  font-size: 1.2em;
}

#toggle-graph {
  background: none;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  padding: 0.25em 0.5em;
}

#toggle-graph:hover {
  background: #e1e4e8;
  border-radius: 3px;
}

.graph-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5em;
}

.graph-list li {
  padding: 0.5em;
  background: white;
  border: 1px solid #e1e4e8;
  border-radius: 4px;
  transition: all 0.2s;
}

.graph-list li:hover {
  border-color: #0366d6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.graph-list a {
  text-decoration: none;
  color: #0366d6;
}

.graph-list a:hover {
  text-decoration: underline;
}
