/* Tooltip text alignment */
.tooltip-inner {
    text-align: left;
}

/* ── Index status dot (inline nel detail header e nelle liste) ─────────────
   Icona bi-info-circle colorata, nessun background/bordo.                  */
.index-status-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 4px;
  cursor: default;
  background: transparent;
  border: none;
  color: #c8c0b4;
  font-size: 0.85rem;
  line-height: 1;
}

.index-status-dot.dot-complete { color: var(--color-success); }
.index-status-dot.dot-partial  { color: #ffc107; }
.index-status-dot.dot-empty    { color: #c8c0b4; }
.index-status-dot.dot-error    { color: #dc3545; }
