.sticky-indicator {
  position: sticky;
  left: 0;
  background-color: #f8f9fa;
  white-space: nowrap;
  font-weight: 600;
  z-index: 4;
  /* No posem ample fix aquí */
}

.sticky-icon {
  position: sticky;
  left: var(--indicator-width, 150px); /* Ho definirem en JS */
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  background-color: #f8f9fa;
  z-index: 3;
}

.sticky-unit {
  position: sticky;
  left: calc(var(--indicator-width, 150px) + 40px);
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  background-color: #f8f9fa;
  white-space: nowrap;
  z-index: 2;
}
