/* _content/CB.Web/Components/Authentication/Pages/ChatbotLogout.razor.rz.scp.css */
.loginpage-cont h5[b-hubyfhvevp] {
    text-align: center;
    margin: 30px 0;
    letter-spacing: 1px;
    font-weight: normal;
}
/* _content/CB.Web/Components/Authentication/Shared/ChatbotExternalLogInPicker.razor.rz.scp.css */
/* MyAppsExternalLogInPicker.razor.css */

.btn-group[b-qgrpwivk03] {
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

.btn[b-qgrpwivk03] {
    background-color: #ff6200;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 0 340px !important;
    box-shadow: 0 6px 12px rgba(255, 98, 0, 0.7);
}

.btn:hover[b-qgrpwivk03] {
    background-color: #e55a00; /* Darken button on hover */
    color: white;
}

.btn i[b-qgrpwivk03] {
    margin-right: 8px;
    font-size: 20px;
}

@media (max-width: 600px) {
    .btn[b-qgrpwivk03] {
        width: 100%;
        padding: 15px;
    }
}
/* _content/CB.Web/Components/Chatbot/LoadingStatus.razor.rz.scp.css */
.loading-container[b-a9l2a8g69w] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.8); /* Optional: Adds a light overlay */
        z-index: 1000; /* Ensures it is on top of other content */
    }

    /* Styling the spinner */
.spinner-border[b-a9l2a8g69w] {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem; /* Space between spinner and text */
    color: blue;
}

    .loading-container div[b-a9l2a8g69w] {
        font-size: 1.2rem;
        font-weight: bold;
    }

.loading-text[b-a9l2a8g69w] {
    font-size: 1.2rem;
    font-weight: bold;
    color: blue; /* Change the text color to blue */
}
/* _content/CB.Web/Components/Chatbot/ThreeDotAnimation.razor.rz.scp.css */
.thinking-dots[b-6p1mqf4zte] {
    --dot-size: 5px;
    --dot-color: #ff6a00;
    --animation-duration: 1.5s;
    display: inline-flex;
    align-items: center;
}

.dot[b-6p1mqf4zte] {
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 50%;
    background-color: var(--dot-color);
    margin: 0 calc(var(--dot-size) / 2);
    animation: wave-b-6p1mqf4zte var(--animation-duration) infinite ease-in-out;
}

    .dot:nth-child(1)[b-6p1mqf4zte] {
        animation-delay: calc(var(--animation-duration) / 3 * 0);
    }

    .dot:nth-child(2)[b-6p1mqf4zte] {
        animation-delay: calc(var(--animation-duration) / 3 * 1);
    }

    .dot:nth-child(3)[b-6p1mqf4zte] {
        animation-delay: calc(var(--animation-duration) / 3 * 2);
    }

@keyframes wave-b-6p1mqf4zte {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px); /* Adjust the wave height as needed */
    }
}
/* _content/CB.Web/Components/CV/CVSearch.razor.rz.scp.css */
.search-container[b-w83hradnoe] {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    padding-top: 50px;
}

:global(.sidebar.collapsed) ~ .search-container[b-w83hradnoe] {
    margin-left: 20px;
}

.logo-container[b-w83hradnoe] {
    margin-bottom: 20px;
    text-align: center;
}
.header-box-container[b-w83hradnoe] {
    width: 80%;
    max-width: 2000px;
    padding-right: 50px;
    font-weight: bold;
    font-size: 15px;
}
.search-logo[b-w83hradnoe] {
    height: 92px;
    width: auto;
}

.search-box-container[b-w83hradnoe] {
    width: 80%;
    max-width: 2000px;
    margin: 0 auto 20px;
}

.search-input[b-w83hradnoe] {
    height: 44px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 0 45px 0 20px;
    font-size: 16px;
    box-shadow: none;
    transition: box-shadow 0.3s;
}

    .search-input:hover[b-w83hradnoe],
    .search-input:focus[b-w83hradnoe] {
        box-shadow: 0 1px 6px rgba(32,33,36,.28);
        border-color: rgba(223,225,229,0);
    }

.search-button[b-w83hradnoe] {
    position: absolute;
    right: 0;
    z-index: 3;
    background: transparent;
    border: none;
    color: #4285f4;
}

    .search-button:hover[b-w83hradnoe] {
        background: transparent;
        color: #1a73e8;
    }

.results-container[b-w83hradnoe] {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.search-results[b-w83hradnoe] {
    list-style: none;
    padding: 0;
}

.result-item[b-w83hradnoe] {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

    .result-item:hover[b-w83hradnoe] {
        background-color: #f8f9fa;
    }

.result-title[b-w83hradnoe] {
    color: #1a0dab;
    font-size: 18px;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

    .result-title:hover[b-w83hradnoe] {
        text-decoration: underline;
    }

.result-details[b-w83hradnoe] {
    color: #4d5156;
    font-size: 14px;
    line-height: 1.58;
}

.detail-label[b-w83hradnoe] {
    font-weight: 500;
    color: #202124;
}

.input-group[b-w83hradnoe] {
    position: relative;
    box-shadow: none;
}

    .input-group:hover[b-w83hradnoe] {
        box-shadow: 0 1px 6px rgba(32,33,36,.28);
    }

.search-header-row[b-w83hradnoe] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
    position: relative;
}

.header-title[b-w83hradnoe] {
    flex: 1;
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    color: #ff5500;
    letter-spacing: 2px;
    font-family: 'Arial Black', Arial, sans-serif;
}

.header-counter[b-w83hradnoe] {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    border: 3px solid #7a3a00;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background: #fff;
    margin-right:3%;
}

.counter-number[b-w83hradnoe] {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    line-height: 1.1;
}

.counter-label[b-w83hradnoe] {
    font-size: 20px;
    color: #222;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .search-container[b-w83hradnoe] {
        margin-left: 0;
        padding-top: 70px;
    }

    .search-box-container[b-w83hradnoe] {
        padding: 0 10px;
    }

    .results-container[b-w83hradnoe] {
        padding: 0 10px;
        max-width: 100%;
    }

    .header-title[b-w83hradnoe] {
        font-size: 28px;
    }
    .header-counter[b-w83hradnoe] {
        width: 70px;
        height: 70px;
        font-size: 14px;
    }
    .counter-number[b-w83hradnoe] {
        font-size: 18px;
    }
    .counter-label[b-w83hradnoe] {
        font-size: 12px;
    }
}

/* Example: shrink and move header when searched */
.search-header-row.searched[b-w83hradnoe] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
    position: relative;
}
.header-title.searched-title[b-w83hradnoe] {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    color: #ff5500;
    letter-spacing: 2px;
    font-family: 'Arial Black', Arial, sans-serif;
    margin: 0 0 0 8px;
    flex: 1;
}
.header-counter.searched-counter[b-w83hradnoe] {
    width: 70px;
    height: 70px;
    border: 2px solid #7a3a00;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background: #fff;
    margin-right: 8px;
}
.counter-number.searched-number[b-w83hradnoe] {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    line-height: 1.1;
}
.counter-label.searched-label[b-w83hradnoe] {
    font-size: 12px;
    color: #222;
    line-height: 1.1;
}
/* _content/CB.Web/Components/CV/CVUpload.razor.rz.scp.css */
.search-container[b-eqnmzit5u5] {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    padding-top: 50px;
}

:global(.sidebar.collapsed) ~ .search-container[b-eqnmzit5u5] {
    margin-left: 20px;
}

.logo-container[b-eqnmzit5u5] {
    margin-bottom: 20px;
    text-align: center;
}

.search-logo[b-eqnmzit5u5] {
    height: 92px;
    width: auto;
}

.search-box-container[b-eqnmzit5u5] {
    width: 80%;
    max-width: 2000px;
    margin: 0 auto 20px;
}

.search-input[b-eqnmzit5u5] {
    height: 44px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 0 45px 0 20px;
    font-size: 16px;
    box-shadow: none;
    transition: box-shadow 0.3s;
}

    .search-input:hover[b-eqnmzit5u5],
    .search-input:focus[b-eqnmzit5u5] {
        box-shadow: 0 1px 6px rgba(32,33,36,.28);
        border-color: rgba(223,225,229,0);
    }

.search-button[b-eqnmzit5u5] {
    position: absolute;
    right: 0;
    z-index: 3;
    background: transparent;
    border: none;
    color: #4285f4;
}

    .search-button:hover[b-eqnmzit5u5] {
        background: transparent;
        color: #1a73e8;
    }

.results-container[b-eqnmzit5u5] {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.search-results[b-eqnmzit5u5] {
    list-style: none;
    padding: 0;
}

.result-item[b-eqnmzit5u5] {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

    .result-item:hover[b-eqnmzit5u5] {
        background-color: #f8f9fa;
    }

.result-title[b-eqnmzit5u5] {
    color: #1a0dab;
    font-size: 18px;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

    .result-title:hover[b-eqnmzit5u5] {
        text-decoration: underline;
    }

.result-details[b-eqnmzit5u5] {
    color: #4d5156;
    font-size: 14px;
    line-height: 1.58;
}

.detail-label[b-eqnmzit5u5] {
    font-weight: 500;
    color: #202124;
}

.input-group[b-eqnmzit5u5] {
    position: relative;
    box-shadow: none;
}

    .input-group:hover[b-eqnmzit5u5] {
        box-shadow: 0 1px 6px rgba(32,33,36,.28);
    }

@media (max-width: 768px) {
    .search-container[b-eqnmzit5u5] {
        margin-left: 0;
        padding-top: 70px;
    }

    .search-box-container[b-eqnmzit5u5] {
        padding: 0 10px;
    }

    .results-container[b-eqnmzit5u5] {
        padding: 0 10px;
        max-width: 100%;
    }
}

.dropContainer[b-eqnmzit5u5]{
    display:flex;
    width:100%;
    height:inherit;
}

.left-half[b-eqnmzit5u5], .right-half[b-eqnmzit5u5]{
    flex:1;
    box-sizing:border-box;
    padding:10px;
}

.left-half[b-eqnmzit5u5] {
    display:flex;
    flex-direction:column;
}

.top-left[b-eqnmzit5u5] {
    flex:1;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    text-align:left;
    padding-left:10px;
    font-size:2em;
}

.bottom-left[b-eqnmzit5u5] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-left: 10px;
    font-size: 1em;
}


.right-half[b-eqnmzit5u5] {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding-left: 10px;
}
/* _content/CB.Web/Components/Layout/EmptyLayout.razor.rz.scp.css */
.page[b-5moonefhne] {
    background-image: linear-gradient(
        to top,
        #f3e7e9 0%,
        #e3eeff 99%,
        #e3eeff 100%
    );
    min-height: 100vh;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center; 
    align-items: center;
}
.content[b-5moonefhne] {
    min-width: 600px;
    min-height: inherit;
    padding: 3rem;
    box-shadow: 0 60px 80px rgba(0, 0, 0, 0.1), 0 45px 26px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background-image: linear-gradient(
        to top,
        #e3eeff 0% #e3eeff 99%,
        #f3e7e9 100%
    );
}
.header .logo img[b-5moonefhne] {
    height: 100px;
}
@media (max-width: 767px) {
    .page[b-5moonefhne] {
        padding: 0 1.5rem;
    }
    main[b-5moonefhne] {
        width: 100%;
    }
    .content[b-5moonefhne] {
        padding: 2rem;
        min-width: 100%;
    }
}
/* _content/CB.Web/Components/Layout/LoginLayout.razor.rz.scp.css */
.page[b-dfif90k1g7] {
    background-image: linear-gradient(
        to top,
        #f3e7e9 0%,
        #e3eeff 99%,
        #e3eeff 100%
    );
    min-height: 100vh;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center; 
    align-items: center;
}
.content[b-dfif90k1g7] {
    min-width: 600px;
    min-height: inherit;
    padding: 3rem;
    box-shadow: 0 60px 80px rgba(0, 0, 0, 0.1), 0 45px 26px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background-image: linear-gradient(
        to top,
        #e3eeff 0% #e3eeff 99%,
        #f3e7e9 100%
    );
}
.header .logo img[b-dfif90k1g7] {
    height: 100px;
}
@media (max-width: 767px) {
    .page[b-dfif90k1g7] {
        padding: 0 1.5rem;
    }
    main[b-dfif90k1g7] {
        width: 100%;
    }
    .content[b-dfif90k1g7] {
        padding: 2rem;
        min-width: 100%;
    }
}
/* _content/CB.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* .page {
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row ::deep a,
.top-row ::deep .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row ::deep a:hover,
.top-row ::deep .btn-link:hover {
    text-decoration: underline;
}

.top-row ::deep a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row {
        justify-content: space-between;
    }

    .top-row ::deep a,
    .top-row ::deep .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth ::deep a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row,
    article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
} */
.page[b-47ts50qcf2] {
    display: flex;
    min-height: 100vh;
}

.main-content[b-47ts50qcf2] {
    flex: 1;
    margin-left: 120px; /* Width of sidebar */
    margin-top: 60px; /* Height of top header */
    padding: 1rem;
    transition: margin-left 0.3s ease;
}

/* When sidebar is collapsed */
:global(.sidebar.collapsed) ~ .main-content[b-47ts50qcf2] {
    margin-left: 60px;
}

@media (max-width: 768px) {
    .main-content[b-47ts50qcf2] {
        margin-left: 0;
    }
}
/* _content/CB.Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* Reset existing styles */
.navbar[b-63cv9net7y], .navbar-custom[b-63cv9net7y] {
    display: none;
}

/* Sidebar styles */
.sidebar[b-63cv9net7y] {
    position: fixed;
    left: 0;
    top: 60px; /* Height of top header */
    bottom: 0;
    width: 250px;
    background-color: #2c3e50;
    color: white;
    transition: all 0.3s ease;
    z-index: 1000;
}

.sidebar.collapsed[b-63cv9net7y] {
    width: 60px;
}

.sidebar-header[b-63cv9net7y] {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.btn-toggle[b-63cv9net7y] {
    background: none;
    border: none;
    color: white;
    padding: 0;
}

.nav-items[b-63cv9net7y] {
    padding: 1rem 0;
}

.nav-item[b-63cv9net7y] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-item:hover[b-63cv9net7y] {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-item i[b-63cv9net7y] {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.nav-item.active[b-63cv9net7y] {
    background-color: #ff6200;
}

.collapsed .nav-text[b-63cv9net7y] {
    display: none;
}

/* Top Header styles */
.top-header[b-63cv9net7y] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1001;
}

.header-content[b-63cv9net7y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 100%;
}

.brand img[b-63cv9net7y] {
    height: 40px;
}

.user-menu .dropdown-toggle[b-63cv9net7y] {
    color: #333;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-menu .dropdown-toggle:hover[b-63cv9net7y],
.user-menu .dropdown-toggle:focus[b-63cv9net7y] {
    color: #ff6200;
}

.dropdown-menu[b-63cv9net7y] {
    margin-top: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dropdown-item[b-63cv9net7y] {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item:hover[b-63cv9net7y] {
    background-color: #f8f9fa;
    color: #ff6200;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar[b-63cv9net7y] {
        transform: translateX(-100%);
    }

    .sidebar.show[b-63cv9net7y] {
        transform: translateX(0);
    }

    .collapsed[b-63cv9net7y] {
        transform: translateX(-100%);
    }
}

/* Navbar custom styling */
.navbar[b-63cv9net7y] {
    padding-left: 0;
    padding-right: 0;
}

.navbar-toggler[b-63cv9net7y] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: var(--background-color);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}

    .navbar-toggler:checked[b-63cv9net7y] {
        background-color: rgba(255, 255, 255, 1);
    }

.navbar-custom[b-63cv9net7y] {
    /* background-color: #ff6200; */
    background-color: var(--primary-color);
}

    .navbar-custom .nav-link[b-63cv9net7y] {
        color: var(--background-color);
        padding: .5rem;
    }

        .navbar-custom .nav-link:hover[b-63cv9net7y] {
            color: #f0f0f0;
        }

    .navbar-custom .dropdown-menu[b-63cv9net7y] {
        /* background-color: #ff6200; */
        background-color: var(--primary-color);
        border: none;
        left: auto;
        right: 0;
    }

        .navbar-custom .dropdown-menu a[b-63cv9net7y] {
            color: var(--background-color);
        }

            .navbar-custom .dropdown-menu a:hover[b-63cv9net7y] {
                background-color: var(--tertiary-color);
            }

    .navbar-custom .navbar-nav.main-nav[b-63cv9net7y] {
        margin: 0 0 0 20px;
    }

.navbar-nav.main-nav li[b-63cv9net7y] {
    padding: 0 6px;
}

    .navbar-nav.main-nav li a[b-63cv9net7y] {
        padding: 6px 12px;
        letter-spacing: 1.2px;
        text-align: center;
        font-size: 14px;
    }

        .navbar-nav.main-nav li a i[b-63cv9net7y],
        .navbar-custom .dropdown-menu a i[b-63cv9net7y] {
            margin-right: 6px;
        }

.form-inline[b-63cv9net7y] {
    margin-left: auto;
    display: flex;
    margin-right: 10px;
}

    .form-inline .form-control[b-63cv9net7y] {
        width: 200px;
    }

    .form-control[b-63cv9net7y],
    .form-inline .btn[b-63cv9net7y] {
        border-radius: 0;
    }

.form-control[b-63cv9net7y] {
    border-radius: 0.2rem 0 0 0.2rem;
}

.form-inline .btn[b-63cv9net7y] {
    border-radius: 0 0.2rem 0.2rem 0;
}

.form-inline .btn[b-63cv9net7y] {
    border: none;
    background: none;
    color: var(--background-color);
    font-size: 18px;
    padding: 0 10px;
    background: #000;
    line-height: 38px;
}

    .form-inline .btn:hover[b-63cv9net7y] {
        color: #ddd;
    }

.logo-small[b-63cv9net7y] {
    max-height: 40px;
}

.navbar .navbar-mobile[b-63cv9net7y],
.navbar.navbar-mobile[b-63cv9net7y],
.navbar-mobile-dropdown[b-63cv9net7y] {
    display: none;
}

.navbar-expand-md .navbar-collapse[b-63cv9net7y] {
}

/* Media queries for responsive design */
@media (min-width: 1025px) {
    /* Base styling for nav items */
    .main-nav .nav-item[b-63cv9net7y] {
        transition: all 0.3s ease-in-out;
    }

    /* Adding a subtle border and animation */
    .main-nav .nav-link[b-63cv9net7y]::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 1px;
        background-color: var(--background-color);
        transition: width 0.3s ease;
    }

    /* Icon and text styling */
    .main-nav .nav-link i[b-63cv9net7y] {
        margin-right: 0.5rem;
        font-size: 1.2rem; /* Adjust icon size */
        transition: color 0.3s ease, transform 0.3s ease;
    }

    /* Hover effects */
    .main-nav .nav-item:hover[b-63cv9net7y] {
        background: rgba(0, 0, 0, 0.3);
        box-shadow: 0 20px 10px -20px rgba(0, 0, 0, 0.45) inset, 20px 0 10px -20px rgba(0, 0, 0, 0.45) inset;
        border-radius: 6px;
    }

        .main-nav .nav-item:hover .nav-link[b-63cv9net7y] {
            transform: scale(1.05); /* Slight scaling effect */
        }

            .main-nav .nav-item:hover .nav-link[b-63cv9net7y]::before {
                width: 100%; /* Full width underline effect */
            }

            .main-nav .nav-item:hover .nav-link i[b-63cv9net7y] {
                transform: rotate(15deg); /* Slight rotation for effect */
            }

    /* Optional: Add a pulse animation */
    @keyframes pulse-b-63cv9net7y {
        0% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.2);
            opacity: 0.7;
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .main-nav .nav-item:hover .nav-link i[b-63cv9net7y] {
        animation: pulse-b-63cv9net7y 1s infinite; /* Pulse effect */
    }
}

@media (max-width: 768px) {
    .navbar-custom .navbar-nav.main-nav[b-63cv9net7y] {
        margin: 20px 0;
    }

        .navbar-custom .navbar-nav.main-nav li[b-63cv9net7y] {
            margin: 6px 0;
            padding-left: 0;
            padding-right: 0;
        }

    .navbar-nav.main-nav li a[b-63cv9net7y] {
        text-align: left;
    }

    .form-inline .form-control[b-63cv9net7y] {
        width: 100%;
    }

    .form-inline[b-63cv9net7y] {
        margin-right: 0;
    }

    .main-nav .nav-item .nav-link[b-63cv9net7y] {
        padding: 10px;
        text-align: center;
    }

    .navbar-custom .dropdown-menu[b-63cv9net7y] {
        padding: 10px 15px;
    }

        .navbar-custom .dropdown-menu .dropdown-item[b-63cv9net7y] {
            border-bottom: 1px solid rgba(0, 0, 0, 0.4);
            padding: 10px 0;
        }

            .navbar-custom .dropdown-menu .dropdown-item:last-child[b-63cv9net7y] {
                border-bottom: none;
            }

    .dropdown-divider[b-63cv9net7y] {
        display: none;
    }

    .navbar-custom .dropdown-menu a:hover[b-63cv9net7y] {
        background: none;
    }

    /* mobile menu */
    .navbar-custom[b-63cv9net7y] {
        display: none;
    }

    .navbar.navbar-mobile[b-63cv9net7y] {
        padding-top: 6px;
        margin: 0;
        display: flex;
    }

    .navbar-nav.navbar-mobile[b-63cv9net7y] {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        align-content: stretch;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar-custom .navbar-nav.main-nav[b-63cv9net7y] {
        margin: 0 0 0 15px;
    }
    /*.navbar-custom.navbar-mobile .navbar-nav.main-nav.navbar {
        margin: 10px 0;
    }*/
    .main-nav.navbar-mobile .nav-item .nav-link[b-63cv9net7y] {
        background: none;
        box-shadow: none;
    }

    .main-nav.navbar-mobile .nav-item .nav-link[b-63cv9net7y] {
        padding: 0;
    }

    .navbar-nav.main-nav.navbar-mobile li[b-63cv9net7y] {
        padding: 0;
    }

        .navbar-nav.main-nav.navbar-mobile li a[b-63cv9net7y] {
            font-size: 1.3em;
        }

            .navbar-nav.main-nav.navbar-mobile li a i[b-63cv9net7y] {
                margin-right: 0;
            }

    .navbar-mobile-dropdown[b-63cv9net7y] {
        display: block;
        top: 0;
        right: 0;
        position: inherit;
    }

    .navbar-mobile-collapse[b-63cv9net7y] {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        /* background: #e5600c; */
        background: var(--primary-color);
    }

        .navbar-mobile-collapse ul[b-63cv9net7y] {
            width: 100%;
        }

        .navbar-mobile-collapse .dropdown-item.nav-link[b-63cv9net7y] {
            border-bottom: 1px solid var(--tertiary-color);
        }

    .navbar-mobile .nav-link i[b-63cv9net7y] {
        margin-right: 10px;
    }

    .navbar-mobile-dropdown:hover[b-63cv9net7y],
    .navbar-mobile-dropdown:focus[b-63cv9net7y],
    .navbar-mobile-dropdown:active[b-63cv9net7y] {
        box-shadow: none;
        border: none;
    }

    .navbar-mobile-search[b-63cv9net7y],
    .navbar-mobile-search:active[b-63cv9net7y],
    .navbar-mobile-search:focus[b-63cv9net7y],
    .navbar-mobile-search:hover[b-63cv9net7y] {
        background-color: transparent;
        border: 1px solid var(--hover-background)oke;
        border-color: var(--hover-background);
        border-top: none;
        border-right: none;
        border-left: none;
        box-shadow: none;
        color: var(--background-color);
    }

    .navbar-mobile .form-inline .btn[b-63cv9net7y] {
        /* background-color: transparent;*/
    }

    .navbar-mobile .form-inline[b-63cv9net7y] {
        display: flex;
        justify-content: right;
    }

        .navbar-mobile .form-inline .form-control.navbar-mobile-search[b-63cv9net7y] {
            background: #fff;
            color: var(--primary-color)
        }

            .navbar-mobile .form-inline .form-control.navbar-mobile-search[b-63cv9net7y]::placeholder {
                color: #fff;
                border
            }

    .navbar-custom.navbar-mobile .navbar-nav.main-nav[b-63cv9net7y] {
        margin: 0;
        margin-top: 10px;
    }

    .mobile-logo-anchor[b-63cv9net7y] {
        width: 25%;
    }

    .mobile-logo[b-63cv9net7y] {
        width: 100%;
    }

    .form-inline-mobile[b-63cv9net7y] {
        width: 72%;
    }

    .navbar-mobile-collapse a.dropdown-item:first-child[b-63cv9net7y] {
        color: var(--background-color);
        margin: 10px 0;
        padding: .5rem;
    }

        .navbar-mobile-collapse a.dropdown-item:first-child i[b-63cv9net7y] {
            margin-right: 10px;
        }

    .main-nav.navbar-mobile[b-63cv9net7y] {
        display: flex;
        -webkit-justify-content: space-around;
        justify-content: space-around;
        margin-top: 10px;
    }
}
/* _content/CB.Web/Components/Pages/Component/Logo.razor.rz.scp.css */
.header.loginpage .logo img[b-5t6qz3s2p9] {
    height: 80px;
    margin: 0 0 16px 0;
}
@media (max-width: 767px) {
    .header.loginpage .logo img[b-5t6qz3s2p9] {
        height: 60px;
    }
}
