/* /Components/MessageBox.razor.rz.scp.css */
.messagebox-card[b-4s5lrjcgf8] {
    border-radius: 1rem;
}

.messagebox-icon[b-4s5lrjcgf8] {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    font-size: 1.1rem;
} 
.modal-header .modal-title[b-4s5lrjcgf8] {
    font-weight: 700;
}
 
.modal-backdrop.show[b-4s5lrjcgf8] {
    backdrop-filter: blur(1px);
}
 
/* /Layout/MainLayout.razor.rz.scp.css */

/* /Pages/Login.razor.rz.scp.css */
.login-root[b-8s6f07yque] {
    background: #fff;
    color: #222;
}

/* Left hero */
.login-hero[b-8s6f07yque] {
    flex: 0 0 50%;
    padding: 3rem;
}

    .login-hero .hero-inner[b-8s6f07yque] {
        max-width: 480px;
    }

.login-hero .brand-logo[b-8s6f07yque] {
    width: 120px;
    height: auto;
}

    .login-hero .hero-title[b-8s6f07yque] {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .login-hero .hero-sub[b-8s6f07yque] {
        font-size: 0.95rem;
        color: #666;
    }

/* Right login */
.login-area[b-8s6f07yque] {
    flex: 1 1 50%;
    padding: 2rem;
}

.login-card-wrapper[b-8s6f07yque] {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.login-card[b-8s6f07yque] {
    border-radius: 1rem;
}

/* Password toggle */
.password-toggle[b-8s6f07yque] {
    position: absolute;
    right: 12px;
    top: 36px;
    color: #0d6efd;
    font-size: 0.85rem;
    text-decoration: none;
}

/* Footer */
.login-footer[b-8s6f07yque] {
    opacity: 0.8;
}
.privacy-panel[b-8s6f07yque] {
    max-width: 900px;
    width: 100%;
    margin: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-card[b-8s6f07yque] {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(16,24,40,0.08);
    overflow: hidden;
}

.privacy-header[b-8s6f07yque] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: linear-gradient(90deg, rgba(249,250,251,1), rgba(255,255,255,1));
}

.privacy-body[b-8s6f07yque] {
    padding: 1rem 1.25rem;
    max-height: calc(100vh - 200px); /* keep it short enough for the viewport */
    overflow-y: auto;
    line-height: 1.6;
    background: #fff;
}

.privacy-footer[b-8s6f07yque] {
    padding: .75rem 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.04);
    background: #fafafa;
    text-align: right;
    display:flex;
    justify-content:center;
}
/* Responsive */
@media (max-width: 991.98px) {
    .hero[b-8s6f07yque] {
        display: none;
    }

    .login-area[b-8s6f07yque] {
        padding: 1.5rem;
    }
    .privacy-panel[b-8s6f07yque] {
        margin: 0.5rem;
    }

    .privacy-body[b-8s6f07yque] {
        max-height: calc(100vh - 120px);
    }
}
/* /Shared/HomeLayout.razor.rz.scp.css */

 
.page[b-z6pig2s5xh] {
    position: relative;
    display: flex;
    flex-direction: row;
    height: auto;
    overflow: hidden;
    min-height: 100vh;
}
 
main[b-z6pig2s5xh],
.content[b-z6pig2s5xh] {
    flex: 1; 
    min-width: 0; 
    display: block;
    background: transparent;
} 
.sidebar[b-z6pig2s5xh] {
    background: var(--sidebar-bg);
    width: var(--sidebar-width);
    transition: width var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-right: 1px solid rgba(0,0,0,0.04);
    z-index: 20;
} 
.navbar-brand img[b-z6pig2s5xh],
.inside-logo[b-z6pig2s5xh] {
    width: 60px;
    height: auto;
    transition: width var(--transition-fast) ease;
}
 
.sidebar.collapsed[b-z6pig2s5xh] {
    width: var(--sidebar-collapsed-width);
    overflow: visible;
    box-shadow: none;
}

    .sidebar.collapsed .nav-item[b-z6pig2s5xh] {
        justify-content: center;
        padding-left: 0.6rem;
        padding-right: 0.6rem;
    } 
     
.hamburger[b-z6pig2s5xh] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0.45rem;
    cursor: pointer;
    flex-direction:column;
}

.collapse-toggle[b-z6pig2s5xh] {
    background: transparent;
    border: none;
    padding: 0.35rem;
    cursor: pointer;
}
 
     
@media (min-width: 641px) {
    .page[b-z6pig2s5xh] {
        flex-direction: row;  
        height: 100vh;
    }
     
    .sidebar[b-z6pig2s5xh] {
        position: sticky;
        top: 0;
        height: 100vh;
    }

    main[b-z6pig2s5xh] {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-brand img[b-z6pig2s5xh],
    .inside-logo[b-z6pig2s5xh] {
        width: 120px;  
    } 
    .sidebar.collapsed .inside-logo[b-z6pig2s5xh] {
        width: 40px;
    }
}
 
@media (max-width: 640px) {
    .page[b-z6pig2s5xh] {
        flex-direction: column;
        height: auto;
    }

    .sidebar[b-z6pig2s5xh] {
        width: 100%;
        position: relative;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }

        .sidebar.collapsed[b-z6pig2s5xh] {
            width: 100%;
        }
}
 
.nav-item .nav-link[title][b-z6pig2s5xh] {
    position: relative;
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-7rwtpt1m7f] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-7rwtpt1m7f] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-7rwtpt1m7f] {
    font-size: 1.1rem;
}

.mobile-nav[b-7rwtpt1m7f] {
    background: var(--sidebar-bg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 30;
}
 

.nav-item[b-7rwtpt1m7f] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-7rwtpt1m7f] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-7rwtpt1m7f] {
        padding-bottom: 1rem;
    }

    .nav-item[b-7rwtpt1m7f]  a { 
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 2rem;
    }

        .nav-item[b-7rwtpt1m7f]  a.active {
            background-color: var(--primary-300);
            color: var(--color-surface);
        }

        .nav-item[b-7rwtpt1m7f]  a:hover {
            background-color: var(--grey-300);
            color: var(--color-primary);
        }

@media (min-width: 641px) {
    .navbar-toggler[b-7rwtpt1m7f] {
        display: none;
    }

    .collapse[b-7rwtpt1m7f] { 
        display: block;
    }
    
    .nav-scrollable[b-7rwtpt1m7f] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
