﻿.redidoc-stage {
    padding-bottom: 80px; /* Adjust height to match footer height */
    padding-top:80px
}

.stage-bar {
    display: flex;
    align-items: flex-start;
    justify-content: center; /* Center horizontally */
    background-color: #fff;
    padding: 5px;
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ccc;
    left:0;
    right:0;
}

.stage {
    display: flex;
    flex-direction: column; /* Stack circle and label vertically */
    align-items: center; /* Center items horizontally */
    margin: 0 150px;
    position: relative;
    text-align: center;
}

    .icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

        .stage .icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            border: 2px solid #999;
            background-color: #999; /* Default grey for completed/pending */
            color: white;
            position: relative;
        }


        .stage.completed .icon {
            background-color: #4CAF50;
            color: #fff;
            border: none;
        }

        .stage .current-icon {
            background-color: white;
            border: 4px solid #999;
            position: relative;
        }

        .stage .current-icon .inner-circle {
            width: 20px;
            height: 20px;
            background-color: #999;
            border-radius: 50%;
        }

        .stage .label {
            margin-top: 8px;
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }


        .line {
            width: 290px;
            height: 2px;
            background-color: #999;
            position: absolute;
            top: 20px;
            left: 100%;
            transform: translateX(0);
        }

        .line-completed {
            background-color: #4CAF50;
        }


.footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f8f8;
    padding: 5px 10px;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: flex-end; /* Align content to right */
    align-items: center;
    z-index: 1000;
}

