/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Code changes for mobile navigation: Added responsive utility classes to show/hide navigation elements on mobile/desktop. No further changes needed after initial setup. */
/* Responsive utility classes for mobile/desktop navigation */
.d-block[b-q0lfg1rqg0] {
    display: block !important;
}
.d-none[b-q0lfg1rqg0] {
    display: none !important;
}
.d-md-none[b-q0lfg1rqg0] {
    display: none !important;
}
.d-md-flex[b-q0lfg1rqg0] {
    display: flex !important;
}
@media (max-width: 991.98px) {
    .d-block[b-q0lfg1rqg0] {
        display: block !important;
    }
    .d-none[b-q0lfg1rqg0] {
        display: none !important;
    }
    .d-md-none[b-q0lfg1rqg0] {
        display: block !important;
    }
    .d-md-flex[b-q0lfg1rqg0] {
        display: none !important;
    }
}
.page[b-q0lfg1rqg0] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
.site-header[b-q0lfg1rqg0] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.top-bar[b-q0lfg1rqg0] {
    background-color: #28a745;
    padding: 0.5rem 0;
    color: white;
}

    .top-bar .container[b-q0lfg1rqg0] {
        text-align: right;
    }

.phone-number[b-q0lfg1rqg0] {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s;
}

    .phone-number:hover[b-q0lfg1rqg0],
    .phone-number:focus[b-q0lfg1rqg0] {
        opacity: 0.9;
        text-decoration: underline;
    }

    .phone-number:focus-visible[b-q0lfg1rqg0] {
        outline: 3px solid #fff;
        outline-offset: 2px;
    }

.nav-bar[b-q0lfg1rqg0] {
    background: #ecfff7;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.container[b-q0lfg1rqg0] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content[b-q0lfg1rqg0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo[b-q0lfg1rqg0] {
    height: 60px;
    width: auto;
}

.logo-link[b-q0lfg1rqg0] {
    display: flex;
    align-items: center;
    border-radius: 4px;
}

    .logo-link:focus-visible[b-q0lfg1rqg0] {
        outline: 3px solid #28a745;
        outline-offset: 4px;
    }

/* Hamburger Menu (hidden on desktop) */

.hamburger[b-q0lfg1rqg0] {
    display: none;
    flex-direction: column;
    background: transparent;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1003;
    border-radius: 4px;
    transition: border-color 0.2s, background-color 0.2s;
}

@media (max-width: 991.98px) {
    .hamburger[b-q0lfg1rqg0] {
        display: flex !important;
    }
}

    .hamburger:hover[b-q0lfg1rqg0] {
        background-color: #f8f9fa;
    }

    .hamburger:focus-visible[b-q0lfg1rqg0] {
        border-color: #28a745;
        outline: 3px solid #28a745;
        outline-offset: 2px;
    }

    .hamburger span[b-q0lfg1rqg0] {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 3px 0;
        transition: 0.3s;
        display: block;
    }

/* code change faraaz, retired 
.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}*/

/* Code change faraaz, navigation bar fit*/
.main-nav[b-q0lfg1rqg0] {
    display: flex;
    flex-wrap: wrap;
    align-items: center; 
    gap: 1.5rem 1.5rem;
    row-gap: 0.25rem;
}

    .main-nav a[b-q0lfg1rqg0] {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s, background-color 0.2s;
        white-space: nowrap;
        padding: 0.5rem 0.75rem;
        border-radius: 4px;
    }

        .main-nav a:hover[b-q0lfg1rqg0],
        .main-nav a:focus[b-q0lfg1rqg0] {
            color: #11088a;
            background-color: #ecfff7;
        }

        .main-nav a:focus-visible[b-q0lfg1rqg0] {
            outline: 3px solid #28a745;
            outline-offset: 2px;
        }

/* Dropdown Menu Styles */
.nav-item-dropdown[b-q0lfg1rqg0] {
    position: relative;
    display: inline-block;
}

.nav-link-dropdown[b-q0lfg1rqg0] {
    background: transparent;
    border: 2px solid transparent;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s, background-color 0.2s, border-color 0.2s;
    white-space: nowrap;
    font-family: inherit;
    border-radius: 4px;
}

    .nav-link-dropdown:hover[b-q0lfg1rqg0],
    .nav-link-dropdown:focus[b-q0lfg1rqg0] {
        color: #11088a;
        background-color: #ecfff7;
    }

    .nav-link-dropdown:focus-visible[b-q0lfg1rqg0] {
        border-color: #28a745;
        outline: 3px solid #28a745;
        outline-offset: 2px;
    }

.dropdown-arrow[b-q0lfg1rqg0] {
    font-size: 0.7rem;
    transition: transform 0.3s;
    display: inline-block;
}

.nav-item-dropdown.open .dropdown-arrow[b-q0lfg1rqg0] {
    transform: rotate(180deg);
}

.dropdown-menu[b-q0lfg1rqg0] {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    padding: 0.5rem 0;
    margin-top: 0;
    padding-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    z-index: 1100;
    list-style: none;
}

    .dropdown-menu.show[b-q0lfg1rqg0] {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .dropdown-menu li[b-q0lfg1rqg0] {
        margin: 0;
        padding: 0;
    }

    .dropdown-menu a[b-q0lfg1rqg0] {
        display: block;
        padding: 0.75rem 1.25rem;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.2s, color 0.2s;
        white-space: nowrap;
        border-radius: 0;
    }

        .dropdown-menu a:hover[b-q0lfg1rqg0],
        .dropdown-menu a:focus[b-q0lfg1rqg0] {
            background-color: #f8f9fa;
            color: #28a745;
        }

        .dropdown-menu a:focus-visible[b-q0lfg1rqg0] {
            outline: 3px solid #28a745;
            outline-offset: -3px;
        }

.login-btn[b-q0lfg1rqg0] {
    background-color: #007bff;
    color: white;
    border: 2px solid transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s, border-color 0.2s;
}

    .login-btn:hover[b-q0lfg1rqg0] {
        background-color: #0056b3;
    }

    .login-btn:focus-visible[b-q0lfg1rqg0] {
        outline: 3px solid #28a745;
        outline-offset: 2px;
        border-color: #28a745;
    }

/* Main Content */
.main-content[b-q0lfg1rqg0] {
    flex: 1;
}

    .main-content:focus[b-q0lfg1rqg0] {
        outline: none;
    }

.content[b-q0lfg1rqg0] {
    padding: 2rem;
}

/* Footer Styles */
.site-footer[b-q0lfg1rqg0] {
    background-color: #ecfff7;
    color: #333;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content[b-q0lfg1rqg0] {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column[b-q0lfg1rqg0] {
    display: flex;
    flex-direction: column;
}

.footer-logo[b-q0lfg1rqg0] {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-description p[b-q0lfg1rqg0] {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.footer-links-column[b-q0lfg1rqg0] {
    align-items: flex-start;
}

.footer-nav[b-q0lfg1rqg0] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-nav a[b-q0lfg1rqg0] {
        color: #333;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s, background-color 0.2s;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        display: inline-block;
    }

        .footer-nav a:hover[b-q0lfg1rqg0],
        .footer-nav a:focus[b-q0lfg1rqg0] {
            color: #28a745;
            background-color: rgba(40, 167, 69, 0.1);
        }

        .footer-nav a:focus-visible[b-q0lfg1rqg0] {
            outline: 3px solid #28a745;
            outline-offset: 2px;
        }

.footer-copyright[b-q0lfg1rqg0] {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #d0d0c8;
}

    .footer-copyright p[b-q0lfg1rqg0] {
        margin: 0;
        font-size: 0.9rem;
        color: #666;
    }

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer-content[b-q0lfg1rqg0] {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column[b-q0lfg1rqg0] {
        align-items: center;
    }

    .footer-links-column[b-q0lfg1rqg0] {
        align-items: center;
    }

    .footer-description p[b-q0lfg1rqg0] {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .site-footer[b-q0lfg1rqg0] {
        padding: 2rem 0 1rem;
    }

    .footer-logo[b-q0lfg1rqg0] {
        height: 100px;
    }

    .footer-content[b-q0lfg1rqg0] {
        gap: 1.5rem;
    }
}

/* Error UI */
#blazor-error-ui[b-q0lfg1rqg0] {
    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: 1001;
    border-top: 3px solid #ff6b6b;
}

    #blazor-error-ui .dismiss[b-q0lfg1rqg0] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
        background: transparent;
        border: 2px solid transparent;
        font-size: 1.2rem;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        transition: background-color 0.2s, border-color 0.2s;
    }

        #blazor-error-ui .dismiss:hover[b-q0lfg1rqg0],
        #blazor-error-ui .dismiss:focus[b-q0lfg1rqg0] {
            background-color: rgba(0, 0, 0, 0.1);
        }

        #blazor-error-ui .dismiss:focus-visible[b-q0lfg1rqg0] {
            outline: 3px solid #ff6b6b;
            outline-offset: 2px;
            border-color: #ff6b6b;
        }

    #blazor-error-ui .reload[b-q0lfg1rqg0] {
        color: #333;
        font-weight: 600;
        text-decoration: underline;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
    }

        #blazor-error-ui .reload:focus-visible[b-q0lfg1rqg0] {
            outline: 3px solid #ff6b6b;
            outline-offset: 2px;
        }

/* ============================================
   ACCESSIBILITY & SKIP LINKS
   ============================================ */

/* Skip to main content link for keyboard users */
.skip-to-main[b-q0lfg1rqg0] {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 1rem 1.5rem;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

    .skip-to-main:focus[b-q0lfg1rqg0] {
        left: 0;
        top: 0;
        outline: 3px solid #fff;
        outline-offset: 2px;
    }

/* Focus visible styles for better keyboard navigation */
*:focus-visible[b-q0lfg1rqg0] {
    outline: 3px solid #28a745;
    outline-offset: 2px;
}

/* Remove focus outline for mouse users */
*:focus:not(:focus-visible)[b-q0lfg1rqg0] {
    outline: none;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet and below */
@media (max-width: 992px) {
    .main-nav[b-q0lfg1rqg0] {
        gap: 1rem;
    }

        .main-nav a[b-q0lfg1rqg0] {
            font-size: 0.9rem;
        }

    .nav-link-dropdown[b-q0lfg1rqg0] {
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container[b-q0lfg1rqg0] {
        padding: 0 1rem;
    }

    .logo[b-q0lfg1rqg0] {
        height: 50px;
    }

    .phone-number[b-q0lfg1rqg0] {
        font-size: 0.9rem;
    }

    /* Show hamburger menu */
    .hamburger[b-q0lfg1rqg0] {
        display: flex;
        z-index: 1003;
    }

    /* Overlay backdrop */
    .main-nav[b-q0lfg1rqg0]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
        z-index: 998;
    }

    /* Show overlay when menu is open */
    .main-nav:not(.collapsed)[b-q0lfg1rqg0]::before {
        opacity: 1;
        pointer-events: none;
    }

    /* Hide navigation by default on mobile */
    .main-nav[b-q0lfg1rqg0] {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 1002;
    }

        /* Show navigation when not collapsed */
        .main-nav:not(.collapsed)[b-q0lfg1rqg0] {
            right: 0;
        }

        .main-nav > a[b-q0lfg1rqg0] {
            width: 100%;
            text-align: left;
            padding: 0.75rem 0;
            font-size: 1.1rem;
            border-bottom: 1px solid #e0e0e0;
            margin: 0;
            position: relative;
            z-index: 1;
            border-radius: 0;
        }

            .main-nav > a:focus-visible[b-q0lfg1rqg0] {
                outline: 3px solid #28a745;
                outline-offset: -3px;
            }

    /* Mobile Dropdown Styles */
    .nav-item-dropdown[b-q0lfg1rqg0] {
        width: 100%;
        display: block;
        position: relative;
        z-index: 1;
    }

    .nav-link-dropdown[b-q0lfg1rqg0] {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
        position: relative;
        z-index: 1;
        border-radius: 0;
    }

        .nav-link-dropdown:focus-visible[b-q0lfg1rqg0] {
            outline: 3px solid #28a745;
            outline-offset: -3px;
        }

    .dropdown-menu[b-q0lfg1rqg0] {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        margin-top: 0 !important;
        padding: 0.5rem 0 0.5rem 1.5rem !important;
        background: #f8f9fa !important;
        border-radius: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: max-height 0.3s ease-in-out !important;
        width: 100% !important;
        min-width: 0 !important;
        z-index: 1;
    }

        .dropdown-menu.show[b-q0lfg1rqg0] {
            max-height: 500px !important;
            padding: 0.5rem 0 0.5rem 1.5rem !important;
        }

        .dropdown-menu a[b-q0lfg1rqg0] {
            padding: 0.6rem 0 !important;
            font-size: 1rem !important;
            border-bottom: none !important;
            display: block !important;
            width: 100% !important;
            position: relative !important;
            z-index: 1 !important;
        }

            .dropdown-menu a:focus-visible[b-q0lfg1rqg0] {
                outline: 3px solid #28a745 !important;
                outline-offset: -3px !important;
            }

    .login-btn[b-q0lfg1rqg0] {
        width: 100%;
        padding: 0.75rem;
        margin-top: 1rem;
        position: relative;
        z-index: 1;
    }

        .login-btn:focus-visible[b-q0lfg1rqg0] {
            outline: 3px solid #28a745;
            outline-offset: -3px;
        }
}

/* Small mobile */
@media (max-width: 480px) {
    .top-bar .container[b-q0lfg1rqg0] {
        text-align: center;
    }

    .phone-number[b-q0lfg1rqg0] {
        font-size: 0.85rem;
    }

    .logo[b-q0lfg1rqg0] {
        height: 40px;
    }

    .content[b-q0lfg1rqg0] {
        padding: 1rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .main-nav a[b-q0lfg1rqg0],
    .nav-link-dropdown[b-q0lfg1rqg0],
    .dropdown-menu a[b-q0lfg1rqg0] {
        border: 2px solid currentColor;
    }

    *:focus-visible[b-q0lfg1rqg0] {
        outline-width: 4px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *[b-q0lfg1rqg0],
    *[b-q0lfg1rqg0]::before,
    *[b-q0lfg1rqg0]::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Code change faraaz, navigation bar one screen fit */
.nav-break[b-q0lfg1rqg0] {
    flex-basis: 100%;
    height: 0;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-hpvkfzoizh] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-hpvkfzoizh] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-hpvkfzoizh] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-hpvkfzoizh] {
    font-size: 1.1rem;
}

.bi[b-hpvkfzoizh] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-hpvkfzoizh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-hpvkfzoizh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-hpvkfzoizh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-hpvkfzoizh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-hpvkfzoizh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-hpvkfzoizh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-hpvkfzoizh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-hpvkfzoizh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-hpvkfzoizh] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-hpvkfzoizh] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-hpvkfzoizh] {
        padding-bottom: 1rem;
    }

    .nav-item[b-hpvkfzoizh]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-hpvkfzoizh]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-hpvkfzoizh]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-hpvkfzoizh] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-hpvkfzoizh] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-hpvkfzoizh] {
        display: none;
    }

    .nav-scrollable[b-hpvkfzoizh] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Shared/MobileNavMenu.razor.rz.scp.css */
/* Code changes for mobile navigation: This CSS file was created to style the new MobileNavMenu component to match the requested mobile design. */
/* Mobile navigation menu styles matching the original design */
.mobile-nav-overlay[b-yb1y3xj9rk] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.15);
    z-index: 1999;
}
.mobile-nav-menu[b-yb1y3xj9rk] {
    background: #ecfff7;
    height: 100vh;
    width: 80vw;
    max-width: 400px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    padding: 0 0 2rem 0;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    box-shadow: 2px 0 16px rgba(0,0,0,0.08);
}
/* Header with logo and close button */
.mobile-nav-header[b-yb1y3xj9rk] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem 2rem 1rem 2rem;
}
.mobile-nav-logo[b-yb1y3xj9rk] {
    height: 60px;
    margin-bottom: 1rem;
    max-width: 220px;
}
.mobile-nav-close[b-yb1y3xj9rk] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #2176ae;
    cursor: pointer;
    margin-left: 1rem;
}
/* Navigation links and dropdowns */
.mobile-nav-links[b-yb1y3xj9rk] {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 0 2rem;
    font-size: 1.08rem;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    font-weight: 400;
}
.mobile-nav-links a[b-yb1y3xj9rk],
.mobile-nav-links span[b-yb1y3xj9rk] {
    color: #111;
    text-decoration: none;
    font-family: inherit;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s;
}
.mobile-nav-links a.active[b-yb1y3xj9rk] {
    color: #2176ae;
    font-weight: 600;
    background: none;
    text-decoration: underline;
}
.dropdown-menu a.active[b-yb1y3xj9rk] {
    color: #2176ae;
    font-weight: 600;
    background: none;
    text-decoration: underline;
}
.mobile-nav-login[b-yb1y3xj9rk] {
    margin: 2.5rem 2rem 0 2rem;
    background: #2176ae;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 0.85rem 0;
    font-size: 1.08rem;
    font-family: inherit;
    font-weight: 500;
    width: calc(100% - 4rem);
    cursor: pointer;
    transition: background 0.2s;
}
.mobile-nav-login:hover[b-yb1y3xj9rk] {
    background: #145a96;
}
.dropdown[b-yb1y3xj9rk] {
    position: relative;
    display: flex;
    flex-direction: column;
    user-select: none;
}
.dropdown-trigger[b-yb1y3xj9rk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1.08rem;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #111;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}
.dropdown-arrow[b-yb1y3xj9rk] {
    font-size: 0.8rem;
    margin-left: 0.25rem;
    display: inline-block;
    transition: transform 0.2s;
}
.dropdown-arrow.open[b-yb1y3xj9rk] {
    transform: rotate(180deg);
}
.dropdown-menu[b-yb1y3xj9rk] {
    position: static !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0.25rem 1.5rem;
    margin: 0;
    list-style: none;
    float: none !important;
    min-width: 0 !important;
}
.dropdown-menu li[b-yb1y3xj9rk] {
    display: block !important;
    margin: 0.4rem 0;
}
.dropdown-menu a[b-yb1y3xj9rk] {
    display: block !important;
    color: #333;
    font-size: 1rem;
    padding: 0.25rem 0;
    font-weight: 400;
    text-decoration: none;
}
.dropdown-menu a:hover[b-yb1y3xj9rk] {
    color: #2176ae;
}
