/* Timeline */
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}
.timeline-item {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: #dee2e6;
}
.timeline-item.done:not(:last-child)::before {
  background: #6c757d;
}
.timeline-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  border: 2px solid #dee2e6;
}
.timeline-item.pending .timeline-dot {
  background: #f8f9fa !important;
}
.timeline-body {
  padding-top: 6px;
  flex: 1;
}

/* Stage badges */
.stage-badge {
  font-size: 0.75rem;
  white-space: nowrap;
}

/* Card hover */
.table-hover tbody tr:hover {
  background-color: rgba(0,0,0,.03);
  cursor: pointer;
}

/* Inputs */
.form-control:focus, .form-select:focus {
  border-color: #495057;
  box-shadow: 0 0 0 0.2rem rgba(73,80,87,.15);
}

/* Nav active */
.navbar .nav-link.active {
  font-weight: 600;
  color: #fff !important;
}

body {
  font-size: 0.925rem;
}
