.hb-ff54045b-wrapper {
    padding: 30px 10px;
    width: 100%;
    box-sizing: border-box;
}

.hb-ff54045b-bar-container {
    position: relative;
    height: 12px;
    background: transparent;
    display: flex;
    align-items: center;
}

/* Horizontal track with transparent fade background */
.hb-ff54045b-bg-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    pointer-events: none;
}

/* Active blue overlay bar */
.hb-ff54045b-progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #3662FF;
    border-radius: 6px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

/* Node layout */
.hb-ff54045b-nodes {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}

.hb-ff54045b-node {
    pointer-events: auto;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    outline: none;
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    transition: transform 0.2s ease;
}

.hb-ff54045b-node:hover {
    transform: scale(1.1);
}

/* Circle behind the numbers */
.hb-ff54045b-node-inner {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease;
    z-index: 1;
}

/* Blue backdrop behind active steps */
.hb-ff54045b-node.is-active .hb-ff54045b-node-inner {
    background-color: #3662FF;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(54, 98, 255, 0.3);
}

.hb-ff54045b-node.is-selected .hb-ff54045b-node-inner {
    transform: scale(1.15);
}

.hb-ff54045b-number {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

/* Hides the default tab title headers completely on frontend */
.hb-process-tabs > .e-n-tabs > .e-n-tabs-heading {
    display: none !important;
}
