/********** Template CSS **********/
    .timeline-container {
      width: 100%;
      margin: 50px auto;
    }
    .tabs {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      border-bottom: 2px solid #ddd;
    }
    .tab {
      flex: 1;
      text-align: center;
      padding: 10px 0;
      cursor: default;
      transition: all 0.3s;
    }
    .tab.active {
      font-weight: bold;
      color: #00B98E;
      border-bottom: 3px solid #00B98E;
	  background: #f1f1f1;
    }
    .content {
      display: none;
      padding: 20px;
      background: white;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .content.active {
      display: block;
    }
 
#step_count{
	background: #00B98E;
	font-size: 14px;
	border-radius: 50%;
	padding: 5px 12px;
	color: white;
}
#step_count_fade{
	background: #8F8F8F;
	font-size: 14px;
	border-radius: 50%;
	padding: 5px 12px;
	color: white;
}