.cursor-disabled{
    cursor: not-allowed;
}

:root{
  --line-color: #d1d5db;
  --marker-bg: #2563eb;
  --card-bg: #ffffff;
}

/* Container */
.timeline{
  position: relative;
  padding: 2rem 0;
}

/* Garis vertikal */
.timeline::before{
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--line-color);
  border-radius: 2px;
}

/* Item timeline */
.timeline-item{
  position: relative;
  padding-left: 80px; /* memberi jarak ke konten */
  margin-bottom: 2rem;
}

/* Marker (bulatan) */
.timeline-item .marker{
  position: absolute;
  left: 33px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--marker-bg);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

/* Konten */
.timeline-item .content{
  background: var(--card-bg);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Typography */
.timeline-item h3{
  margin: 0 0 4px 0;
  font-size: 1.1rem;
}
.timeline-item time{
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 6px;
}
.timeline-item p{
  margin: 0;
}

/* New */
.w-fit{
  width: fit-content;
}
.lampiran-list:hover{
  background-color: #eff0f1 !important;
}
