/* Timeline container styles */
.timeline-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    flex-wrap: nowrap;
}

/* Individual timeline step */
.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    
}

/* Media query for screens larger than 768px */
@media (min-width: 768px) {
    .timeline-steps {
        flex-direction: row; /* Horizontal layout for larger screens */
        justify-content: space-around;
    }

    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: 0.25rem dotted #e45310;
        width: 2.46rem;
        position: absolute;
        left: 7.5rem;
        top: 1.3125rem;
    }

    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted #e45310;
        width: 3.8125rem;
        position: absolute;
        right: 7.5rem;
        top: 1.3125rem;
    }
}

/* Timeline content (circle) style */
.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center;
}

/* Adjust circle size */
.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: 3rem;
    width: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 5px solid #e45310;
}

/* Background color styles */
.bg-green {
    background-color: #e45310;
}

.bg-yellow {
    background-color: #ffffff;
}
 
@media (max-width: 767px) { 
    .h6  {
        font-size: 12px;
    }
    .timeline-steps .timeline-content .inner-circle {
        height: 1.5rem;  
        width: 1.5rem;  
        border-width: 3px; 
    }

    .timeline-steps .timeline-content {
        width: 5rem;   
    } 
  
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: 3px dotted #e45310;
        width: 40px;
        position: absolute;
        right: 60px;
        top: 11px;
    }

}
