.step-bar-container {
    align-items: center;
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    max-width: 100%;
    overflow: hidden;
}

.step-bar-wrapper {
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    white-space: nowrap;
    -ms-overflow-style: none;  /* IE10+ */
}

.step-bar-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

#scrollable-progress-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
}

#scrollable-progress-bar li {
    border-radius: 4px;
    flex: 0 0 auto;
    min-width: 160px;
    padding: 10px;
    white-space: nowrap;
}

.scroll-btn {
    background-color: #009b4e;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 18px;
    padding: 8px 12px;
}

.scroll-btn:hover {
    background: #00665e;
}

.scroll-btn:disabled {
    background-color: #F0F0F0;
    color: #000;
    cursor: not-allowed;
    opacity: 0.4;
}

@media (max-width: 767px) {
    .step-bar-container {
        display: block; /* Fallback: default stacking */
    }
}


