/* Association Page - PrintEclipse */

/* Timeline */
.timeline {
  position: relative;
  padding-left: 1.5rem;
}

@media (min-width: 768px) {
  .timeline {
    padding-left: 3rem;
  }
}

.timeline__progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0%;
  background: var(--accent-warm);
  transition: height 0.1s linear;
}

.timeline__progress::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--wire);
  z-index: -1;
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-lg);
  padding-left: var(--space-sm);
}

@media (min-width: 768px) {
  .timeline__item {
    padding-left: var(--space-md);
  }
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1.5rem + 1px);
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent-warm);
  transform: translateX(-50%);
  transition: background-color 0.4s var(--ease-organic),
              transform 0.4s var(--ease-organic);
}

@media (min-width: 768px) {
  .timeline__item::before {
    left: calc(-3rem + 1px);
    width: 14px;
    height: 14px;
  }
}

.timeline__item.is-active::before {
  background: var(--accent-warm);
  transform: translateX(-50%) scale(1.2);
}

/* Printer marker for Leaflet */
.printer-marker {
  background: transparent !important;
  border: none !important;
}

/* Map container enhancements */
#map {
  border-radius: 4px;
}
