.graph-view {
  width: 100%;
  height: 100%;
  position: relative;
  background: #0d1117;
}

.graph-tabs {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 3px;
}

.graph-tab {
  font-family: var(--sans);
  font-size: 12px;
  padding: 6px 16px;
  border: none;
  background: none;
  color: rgba(255,255,255,0.5);
  border-radius: 4px;
  cursor: pointer;
}

.graph-tab.active {
  background: rgba(255,255,255,0.15);
  color: white;
}

.graph-container {
  width: 100%;
  height: 100%;
}

.graph-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 10;
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.graph-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.graph-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.graph-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
