/* DEFAULT (dark tema) */
.nn-timeline{
  border-left:3px dashed #f5c400; /* žuta */
  padding-left:20px;
}

.nn-item{
  margin-bottom:30px;
  position:relative;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:14px;
}

.nn-item:before{
  content:'';
  position:absolute;
  left:-12px;
  top:16px;
  width:14px;
  height:14px;
  background:#f5c400; /* žuta tačka */
  border-radius:50%;
}

/* LIGHT TEMA */
@media (prefers-color-scheme: light){
  .nn-timeline{
    border-left-color:#0b3c6f; /* TAMNO PLAVA */
  }

  .nn-item{
    background:#f5f7fa;
    border-color:#0b3c6f;
  }

  .nn-item:before{
    background:#0b3c6f; /* TAMNO PLAVA tačka */
  }
}
