/* _content/CustomerCare/Components/Layout/MainLayout.razor.rz.scp.css */
/* Global Styles */
.app-container[b-x5vdw4rleq] {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --background-alt: #0f0d1d;
    --background-light: #f9fafb;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --border-color: #e5e7eb;
    --success: #10b981;
    --error: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

*[b-x5vdw4rleq] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-row[b-x5vdw4rleq] {
    height: 4.5rem;
    background-color: var(--background-alt);
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.9375rem;
    padding: 0;
    border-bottom: none;
    width: 100%;
}

.top-row .container[b-x5vdw4rleq] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
}

.top-row-content[b-x5vdw4rleq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.support-email[b-x5vdw4rleq] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.1rem; /* Increased font size */
    font-weight: 400;
}

.support-email a[b-x5vdw4rleq] {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 1.1rem; /* Increased font size to match */
}

.support-email a:hover[b-x5vdw4rleq] {
    color: white;
    text-decoration: underline;
}

.support-email i[b-x5vdw4rleq] {
    font-size: 1.2rem; /* Increased icon size */
    color: #ff0000; /* Red color for envelope */
}

.atop-menu[b-x5vdw4rleq] {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 1.5rem;
    align-items: center;
    height: 100%;
}

.atop-menu li[b-x5vdw4rleq] {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.atop-menu a[b-x5vdw4rleq] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.atop-menu a[b-x5vdw4rleq]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.atop-menu a i[b-x5vdw4rleq] {
    position: relative;
    z-index: 1;
}

.atop-menu a:hover[b-x5vdw4rleq] {
    color: #ff0000; /* Red color on hover */
    transform: translateY(-2px);
}

.atop-menu a:hover[b-x5vdw4rleq]::before {
    transform: scale(1);
    background: white; /* Keep white background on hover */
}


body[b-x5vdw4rleq] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Main content container */
.main-content-wrapper[b-x5vdw4rleq] {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.main-content[b-x5vdw4rleq] {
    margin: 0 16.666vw; /* 1/6 of viewport width on each side */
    min-height: calc(100vh - 4.5rem); /* Account for top bar height */
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Ensure full-width elements still stretch to viewport edges */
.top-row[b-x5vdw4rleq],
.site-footer[b-x5vdw4rleq] {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Fix for content inside full-width sections */
.top-row .container[b-x5vdw4rleq],
.site-footer .container[b-x5vdw4rleq] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a[b-x5vdw4rleq] {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover[b-x5vdw4rleq] {
    color: var(--secondary-color);
}

.container[b-x5vdw4rleq] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Navigation */
.top-nav[b-x5vdw4rleq] {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.top-nav .container[b-x5vdw4rleq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo[b-x5vdw4rleq] {
    display: flex;
    flex-direction: column;
}

.logo img[b-x5vdw4rleq] {
    height: 40px;
    width: auto;
    margin-bottom: 0.25rem;
}

.logo-tagline[b-x5vdw4rleq] {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    margin-top: 0.25rem;
}

.main-nav[b-x5vdw4rleq] {
    display: flex;
    gap: 2rem;
}

/* Navigation Links */
.nav-link[b-x5vdw4rleq] {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    position: relative;
    z-index: 0;
    white-space: nowrap;
    margin: 0;
    text-decoration: none;
}

.nav-link-text[b-x5vdw4rleq] {
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

/* Hover and active states */
.nav-link:hover .nav-link-text[b-x5vdw4rleq],
.nav-link.active .nav-link-text[b-x5vdw4rleq] {
    color: var(--primary-color);
}

/* Active link underline */
.nav-link.active .nav-link-text[b-x5vdw4rleq]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 1;
}

/* Override Blazor's NavLink styles */
[b-x5vdw4rleq] .nav-link {
    color: inherit !important;
    background: none !important;
}

[b-x5vdw4rleq] .nav-link:hover {
    background: none !important;
}

.user-actions[b-x5vdw4rleq] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-profile[b-x5vdw4rleq] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.user-profile i[b-x5vdw4rleq] {
    font-size: 1.25rem;
}

.btn-login[b-x5vdw4rleq] {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

.btn-login:hover[b-x5vdw4rleq] {
    background-color: var(--secondary-color);
    color: white;
}

.btn-logout[b-x5vdw4rleq] {
    color: var(--text-light);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.btn-logout:hover[b-x5vdw4rleq] {
    background-color: var(--background-alt);
    color: var(--primary-color);
}

/* Main Content */
.main-content[b-x5vdw4rleq] {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Footer */
.site-footer[b-x5vdw4rleq] {
    background-color: #111827;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content[b-x5vdw4rleq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img[b-x5vdw4rleq] {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-logo p[b-x5vdw4rleq] {
    color: #9ca3af;
    margin-top: 1rem;
}

.footer-links[b-x5vdw4rleq] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4[b-x5vdw4rleq] {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-section a[b-x5vdw4rleq] {
    display: block;
    color: #9ca3af;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-section a:hover[b-x5vdw4rleq] {
    color: white;
}

.social-icons[b-x5vdw4rleq] {
    display: flex;
    gap: 1.25rem; /* Slightly more space between icons */
    margin-top: 2.5rem; /* More top margin */
    margin-bottom: 1rem; /* Added bottom margin */
    background-color: var(--background-alt); /* Transparent background */
    justify-content: flex-start;
}

.social-icons a[b-x5vdw4rleq] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;  /* Increased size */
    height: 44px;  /* Increased size */
    border-radius: 50%;
    color: white;
    transition: all 0.2s ease;
    font-size: 1.25rem;  /* Larger icons */
}

.social-icons a:hover[b-x5vdw4rleq] {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

.footer-bottom[b-x5vdw4rleq] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p[b-x5vdw4rleq] {
    color: #9ca3af;
    font-size: 0.875rem;
}

.legal-links[b-x5vdw4rleq] {
    display: flex;
    gap: 1.5rem;
}

.legal-links a[b-x5vdw4rleq] {
    color: #9ca3af;
    font-size: 0.875rem;
}

.legal-links a:hover[b-x5vdw4rleq] {
    color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-links[b-x5vdw4rleq] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav[b-x5vdw4rleq] {
        display: none;
    }
    
    .footer-content[b-x5vdw4rleq] {
        grid-template-columns: 1fr;
    }
    
    .footer-links[b-x5vdw4rleq] {
        grid-template-columns: 1fr;
        gap: 2rem 0;
    }
    
    .footer-section[b-x5vdw4rleq] {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
    }
    
    .footer-section:last-child[b-x5vdw4rleq] {
        border-bottom: none;
    }
    
    .footer-bottom[b-x5vdw4rleq] {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links[b-x5vdw4rleq] {
        margin-top: 1rem;
    }
}

#blazor-error-ui[b-x5vdw4rleq] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-x5vdw4rleq] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/CustomerCare/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-q3d6ho7p30] {
    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-q3d6ho7p30] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-q3d6ho7p30] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-q3d6ho7p30] {
    font-size: 1.1rem;
}

.bi[b-q3d6ho7p30] {
    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-q3d6ho7p30] {
    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-q3d6ho7p30] {
    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-q3d6ho7p30] {
    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");
}

.nav-item[b-q3d6ho7p30] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-q3d6ho7p30] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-q3d6ho7p30] {
        padding-bottom: 1rem;
    }

    .nav-item[b-q3d6ho7p30]  .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-q3d6ho7p30]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-q3d6ho7p30]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-q3d6ho7p30] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-q3d6ho7p30] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-q3d6ho7p30] {
        display: none;
    }

    .nav-scrollable[b-q3d6ho7p30] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
