﻿.breadcrumb {
    list-style: none;
    margin-bottom: 0;
}

    .breadcrumb li {
        width: 100%;
    }

.question { 
    display: none;
}

    .question.active {
        display: block;
    }

.category-navigation {
    float: left;
    width: 20%;
    background-color: #f2f2f2;
    margin-right: 15px;
    padding: 10px;
}

    .category-navigation a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        background-color: #eaeaea;
        margin-bottom: 5px;
        text-decoration: none;
        color: black;
    }

        .category-navigation a.active {
            background-color: #657885;
            color: white;
        }

    .category-navigation h2 {
        padding: 10px 15px;
        border-radius: 5px;
        text-align: center;
        font-size: 22px;
        font-weight: bold;
        text-decoration: underline black;
    }



.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.fas {
    font-size: 16px;
}

.icon-container i {
    font-size: 16px;
}

.category-navigation a.incomplete .icon-container i {
    content: "\f00d";
    color: red;
}

.category-navigation a.complete .icon-container i {
    content: "\f00c";
    color: green;
}

.category-navigation a {
    position: relative;
}

.icon-container {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.wizard-content {
    float: right;
    width: 75%;
    padding: 20px;
    background-color: #fffafe;
    border: 1px solid #ccc;
    min-height: 300px;
}

.wizard-step {
    display: none;
}

    .wizard-step.active {
        display: block;
    }

.clear-fix {
    clear: both;
}

.card {
    margin: 20px 0;
    border: 1px solid #ccc;
}

.card-header {
    background-color: #657885;
}

.card-body {
    background-color: #fffafe;
}

.card-description {
    padding: 10px;
    font-style: italic;
    color: #555;
}

.btn-container {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

    .btn-container .btn {
        margin-left: 10px;
    }

.btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.g-recaptcha {
    margin-bottom: 10px;
}


/*================= MOBILE NAV MENU ====================*/
/* Add this to your CSS */
.navbar-nav .nav-link {
    padding: 10px 15px;
    background-color: #eaeaea;
    margin-bottom: 5px;
    text-decoration: none;
    color: black;
    font-size: 16px; /* Adjust font size as needed */
}

    .navbar-nav .nav-link.active {
        background-color: #8697a3;
        color: white;
    }

    .navbar-nav .nav-link i {
        font-size: 16px;
    }
