/* Step Tracker Container */
#step-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
}

/* Individual Steps */
.step {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    min-width: 100px;
}

/* Connecting Lines */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    width: calc(100% - 24px);
    height: 4px;
    background-color: #ccc;
    z-index: 0;
    transform: translateX(12px) translateY(-50%);
}

/* Step Circle */
.step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ccc;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    position: relative;
}

/* Completed Step */
.step.completed .step-circle {
    background-color: #4caf50;
}

.step.completed .step-circle::after {
    content: '✔';
}

/* Connecting Line for Completed Step */
.step.completed::after {
    background-color: #4caf50;
}

/* Step Labels */
.step-label {
    margin-top: 8px;
    font-size: 12px;
    color: #333;
}

.step.completed .step-label {
    color: #4caf50;
}

.btn-equal-width {
    width: 95px;
}

/* Mobil nézet */
@media (max-width: 768px) {
    #step-tracker {
        overflow-x: auto;
        white-space: nowrap;
    }

    .step {
        min-width: 80px;
    }

    .step-label {
        font-size: 10px;
    }
}

.checkmark {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    margin: 0 auto;
}