/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* ── Timeline: Custom Scrollbar ── */

.timeline-scroll {
  scrollbar-width: thin;
  scrollbar-color: #4b5563 #1f2937;
}

.timeline-scroll::-webkit-scrollbar {
  height: 6px;
}

.timeline-scroll::-webkit-scrollbar-track {
  background: #1f2937;
  border-radius: 3px;
}

.timeline-scroll::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 3px;
}

.timeline-scroll::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* ── Timeline: Node Interaction ── */

.timeline-node {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
