/* Basic Bootstrap 4 Progress Bar Styles */
.progress {
    display: flex;
    height: 1.5rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    position: relative; /* Position relative for absolute positioning of markers */
    margin-top: 2.5rem;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    text-align: center;
    transition: width 0.6s ease;
    background-color: #E50050; /* Primary color */
    border-radius: 0.25rem;
}

.progress-bar[role="progressbar"] {
    width: 0; /* Initial width */
}

/* Styles for step markers */
.step-mark {
    position: absolute;
    bottom:100%; 
    height: 2rem;
    width: 60px;
    transform: translateX(-100%);
    text-align: center;
    font-size: 0.75rem;
    color: #1D4078; 
    background-color: #fff; 
    border: 1px solid #1D4078; 
    border-radius: 0.25rem;
    padding: 0.2rem; 
    margin-bottom: 0.2rem;
}
.step-mark.reached {
    background-color: #E50050 !important;
    color : #fff !important;
}