/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 27 2025 | 10:41:31 */
#progress-bar-container {
    position: relative;
    width: 100%;
    background: #f3f3f3;
    height: 30px; /* Adjust height to fit both the bar and indicators */
    border-radius: 5px;
    margin-bottom: -20px;
}

#progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 10px;
    background: #4caf50;
    width: 0%;
    transition: width 0.3s ease-in-out;
    border-radius: 5px;
}

.step-indicators {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; /* Prevent clicks on indicators */
}

.step-indicator {
    position: relative;
    width: 30px;
    height: 30px;
    background: #f3f3f3;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #ccc;
    z-index: 10;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.step-indicator.active {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}

.step-indicator.completed {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}
