﻿.HomeSignInButton {
    height: 24rem;
    padding: 4rem;
    width: 100%;
}

    .HomeSignInButton:hover {
        padding: 4rem;
    }

.shadow-box {
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 20%), 0 5px 20px 0 rgb(0 0 0 / 19%);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
    min-height: 145px;
    margin-top: 10px;
    background-color: #fff;
    border-radius: 10px;
}


.check-in-icon {
    padding-top: 1rem;
    display: block;
    font-size: 5rem !important;
}

/* hr ARC */
hr.arc-hr {
    line-height: 1rem;
    position: relative;
    outline: 0;
    border: 0;
    text-align: center;
    height: 5rem;
    background: white !important;
}

    hr.arc-hr:before {
        content: "";
        background: linear-gradient(to right, white, rgb(185,31,49), white) !important;
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: .3rem;
    }

    hr.arc-hr:after {
        content: "";
        position: relative;
        display: inline-block;
        padding: 2.5rem 3.5rem;
        line-height: 1.5em;
        background-color: white !important;
        background-image: url(../img/Blue-Oak-Tree.svg) !important;
        background-size: 4.5rem !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }
/***********/

.document {
    padding: 0.5in;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.form-group.required .control-label:after {
    content: "*";
    color: red;
}

.criteriapoints {
    font-style: italic;

}

.PrescreeningQuestions > li::marker {
    font-weight: bold;
}

.GuidelineQuestions > li::marker {
    font-weight: bold;
}

input[type=number] {
    background-color:"#fff";
    border: 1px solid #c8cbce;
    padding: .5rem 1rem;
    width: 100%;
}

input[type=file] {
    display: initial;
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        width: 360px;
        text-align: left;
    }
    .dl-horizontal dd {
        margin-left: 380px;
    }
}

.editBtn {
    display: initial;
    line-height: 3;
    padding-top: .4rem;
    padding-bottom: .4rem;
}

.badge {
    font-size: unset;
}

.disabled {
    pointer-events: none;
    text-decoration: none;
    opacity: 65%;
}

.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;
    }