/* Explore View Styles */

.explore-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.explore-hint {
  margin-bottom: 10px;
  padding: 8px;
  background-color: #f5f5f5;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

.explore-hint p {
  margin: 0;
}

.filter-controls {
  margin-bottom: 5px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.filter-tag {
  background-color: var(--accent-color);
  color: white;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 14px;
  cursor: pointer;
  margin: 3px;
}

.filter-tag.active {
  background-color: var(--secondary-color);
}

.progress-filter {
  background-color: #d7d7d7;
  color: black;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 14px;
  cursor: pointer;
  margin: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.progress-filter.active {
  background-color: var(--secondary-color);
  color: white;
}

.graph-container {
  flex-grow: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  position: relative;
}

/* Graph specific styles */
.note {
  cursor: pointer;
}

.done-note {
  opacity: 0.6;
}

/* Node interaction styles */
.note circle:hover {
  stroke-width: 4px;
  stroke: var(--accent-color);
}

/* Empty state message */
.empty-graph-message {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #777;
  font-style: italic;
  padding: 20px;
  text-align: center;
}

/* Tooltip styles */
.graph-tooltip {
  position: absolute;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  font-size: 12px;
  max-width: 200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 100;
}

.graph-tooltip .title {
  font-weight: bold;
  margin-bottom: 5px;
}

/* Legend styles */
.graph-legend {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  font-size: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}

/* Zoom controls */
.zoom-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.zoom-btn {
  width: 30px;
  height: 30px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.zoom-btn:hover {
  background-color: #f5f5f5;
}
