.HomeSignInButton {
    height: 24rem;
    padding: 4rem;
    width: 100%;
}

    .HomeSignInButton:hover {
        padding: 4rem;
    }

.editBtn {
    display: initial;
    line-height: 3;
    padding-top: .4rem;
    padding-bottom: .4rem;
}

.step-header {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.step-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.step-item {
    flex: 1;
    text-align: center;
    font-size: 14px;
    border-bottom: 4px solid transparent;
    transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

    .step-item a,
    .step-item span {
        display: block;
        color: #212121;
        text-decoration: none;
        padding: 8px 0;
        height: 100%;
    }

        .step-item a:hover {
            color: #000;
            background-color: #f0f0f0;
        }

/* State-based bottom border colors */
.step-complete {
    border-bottom-color: #007E33; /* green */
}

    .step-complete a:hover {
        border-bottom-color: #006626;
    }

.step-problem {
    border-bottom-color: #B22222; /* red */
}

    .step-problem a:hover {
        border-bottom-color: #8B1A1A;
    }

.step-unlocked {
    border-bottom-color: #005A9E; /* blue */
}

    .step-unlocked a:hover {
        border-bottom-color: #004B85;
    }

.step-locked {
    border-bottom-color: #6c6c6c; /* dark gray for contrast */
}

    .step-locked span {
        color: #555;
        cursor: not-allowed;
    }

    .step-locked:hover {
        background-color: transparent;
    }

/* Current step enhancement */
.step-current {
    border-bottom-width: 5px;
}

    .step-current a,
    .step-current span {
        font-weight: bold;
    }

/* Wider modal for document preview. arcmin.css (Bootstrap 3) pins
   .modal-dialog to width:600px, so override with width (not max-width). */
.modal-dialog.modal-preview {
    width: 95vw;
    max-width: 95vw;
}
