﻿ 
.tracker-container {
    background-color: #fff;
    /*border: 2px solid #0b5aa0;*/
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 100%;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.stage {
    text-align: center;
    width: 18%;
    position: relative;
}

.circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    margin: 0 auto;
    z-index: 1; /* Ensure circles are above lines */
    position: relative;
}

.title {
    margin-top: 10px;
    font-size: 14px;
}

/* Styles for completed stages */
.completed .circle {
    background-color: #0b5aa0;
    color: #fff;
}

/* Styles for the active stage */
.active .circle {
    background-color: #22a9bf;
    color: #fff;
    border: 2px solid #22a9bf;
}

/* Styles for incomplete stages */
.incomplete .circle {
    background-color: #fff;
    color: #22a9bf;
    border: 2px solid #22a9bf;
}

/* Connector line between stages */
.line {
    position: absolute;
    top: 20px;
    left: 100%;
    width: 100%;
    height: 2px;
    background-color: #0b5aa0;
    z-index: 0; /* Ensure line is below circles */
    transform: translateX(-50%);
}

.stage:first-child .line {
    left: 100%;
    width: 100%;
}

.stage:last-child .line {
    display: none; /* No line after the last stage */
}

.stage.incomplete .line {
    background-color: #22a9bf;
}
 