.alm-steps-indicator {
    margin: 30px 0;
}

.alm-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.alm-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-name {
    font-size: 14px;
    color: #666;
}

.alm-step.active .step-number {
    background: #FF9800;
    color: white;
}

.alm-step.active .step-name {
    color: #FF9800;
    font-weight: 600;
}

.alm-step.completed .step-number {
    background: #F57C00;
    color: white;
}

.alm-step.completed .step-name {
    color: #F57C00;
}

/* Linia łącząca kroki */
.alm-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #E8E8E8;
    z-index: 0;
}

/* Linia postępu */
.alm-steps::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    background: #FF9800;
    z-index: 0;
    transition: width 0.3s ease;
}

.alm-step.completed .step-number::after {
    content: '✓';
    font-size: 18px;
}