/* Zones Git et Timeline */

.git-zones {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow-x: auto;
}

.git-zone {
  min-width: 110px;
  flex: 1 1 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.zone-header {
  padding: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e2e8f0;
  border-left: 4px solid;
  background: rgba(0, 0, 0, 0.2);
}

.zone-body {
  padding: 0.5rem;
  min-height: 50px;
}

.zone-item {
  font-size: 0.8125rem;
  color: #cbd5e1;
  padding: 0.25rem 0;
}

.zone-item-empty {
  font-size: 0.8125rem;
  color: #64748b;
  font-style: italic;
}

.zone-empty {
  padding: 1rem;
  color: #94a3b8;
  text-align: center;
  font-style: italic;
}

.zone-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.arrow-label {
  font-size: 0.75rem;
  color: #94a3b8;
}

.arrow-line {
  font-size: 1.5rem;
  color: #64748b;
}

/* Vous êtes ici */
.zone-you-are-here .zone-you-are-here-label {
  font-size: 0.75rem;
  color: #34d399;
  padding: 0.25rem 0.5rem;
  text-align: center;
  font-weight: 600;
}

/* Vous avez modifié ici */
.git-zone.zone-modified-here {
  outline: 3px solid #fbbf24;
  outline-offset: 2px;
  box-shadow: 0 0 0 1px #fbbf24;
}

.zone-modified-label {
  font-size: 0.75rem;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.15);
  padding: 0.25rem 0.5rem;
  text-align: center;
  font-weight: 600;
}

.timeline-container {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  max-height: 120px;
  overflow-y: auto;
}

.timeline-empty {
  color: #94a3b8;
  font-size: 0.8125rem;
  font-style: italic;
  text-align: center;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timeline-item {
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  border-left: 3px solid #3b82f6;
}

.timeline-cmd {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: #7dd3fc;
}
