/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-6dzwr9hhpi] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fcfcfc; /* Very light grey for a premium feel */
}

.modern-header[b-6dzwr9hhpi] {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky; /* Keeps it at the top */
    top: 0;
    z-index: 1050; /* Ensures it stays above page content */
    width: 100%;
}

.modern-main[b-6dzwr9hhpi] {
    flex: 1;
    padding-top: 2rem;
    /* Centering Logic */
    width: 100%;
    max-width: 950px; /* Matches your header width */
    margin: 0 auto; /* Centers the block horizontally */
    padding-left: 1.5rem; /* Prevents text from hitting the edge on tablets */
    padding-right: 1.5rem;
}

/* Ensure the article inside doesn't add conflicting constraints */
.content[b-6dzwr9hhpi] {
    width: 100%;
}

/* Clear out the old default sidebar constraints */
.sidebar[b-6dzwr9hhpi] {
    display: none;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.header-container[b-0ywvz2w5z5] {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Keeps logo left and menu right WITHIN the 800px */
    width: 100%;
    max-width: 900px; /* This is the magic number you requested */
    margin: 0 auto; /* This centers the 800px block on the monitor */
    position: relative;
}

/* Ensure the navbar itself doesn't restrict the centering */
.navbar[b-0ywvz2w5z5] {
    width: 100%;
}

/* This targets the <a> tag generated by NavLink */
[b-0ywvz2w5z5] .nav-link {
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: 6px;
    color: #555 !important;
    transition: background-color 0.2s;
}

    /* This targets the active state regardless of nesting */
    [b-0ywvz2w5z5] .nav-link.active {
        background-color: #e7f1ff !important; /* The light blue background */
        color: #007bff !important; /* The blue text */
        font-weight: 600 !important;
    }

    /* Hover effect */
    [b-0ywvz2w5z5] .nav-link:hover:not(.active) {
        background-color: #f8f9fa !important;
        color: #000 !important;
    }

/* Keep your layout logic outside of the ::deep tags */
@media (min-width: 768px) {
    .navbar-toggler[b-0ywvz2w5z5] {
        display: none !important;
    }

    .navbar-collapse[b-0ywvz2w5z5] {
        display: flex !important;
        width: 100%;
    }

    .navbar-nav[b-0ywvz2w5z5] {
        display: flex;
        flex-direction: row !important;
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse.show[b-0ywvz2w5z5] {
        display: block !important;
        position: absolute;
        top: 100%;
        width: 200px;
        right: 0;
        background-color: white;
        z-index: 1050;
        box-shadow: -2px 4px 10px rgba(0,0,0,0.1);
        padding: 1rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-3pppydv0r6],
.components-reconnect-repeated-attempt-visible[b-3pppydv0r6],
.components-reconnect-failed-visible[b-3pppydv0r6],
.components-pause-visible[b-3pppydv0r6],
.components-resume-failed-visible[b-3pppydv0r6],
.components-rejoining-animation[b-3pppydv0r6] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-3pppydv0r6],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-3pppydv0r6],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-3pppydv0r6],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-3pppydv0r6],
#components-reconnect-modal.components-reconnect-retrying[b-3pppydv0r6],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-3pppydv0r6],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-3pppydv0r6],
#components-reconnect-modal.components-reconnect-failed[b-3pppydv0r6],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-3pppydv0r6] {
    display: block;
}


#components-reconnect-modal[b-3pppydv0r6] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-3pppydv0r6 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-3pppydv0r6 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-3pppydv0r6 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-3pppydv0r6]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-3pppydv0r6 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-3pppydv0r6 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-3pppydv0r6 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-3pppydv0r6 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-3pppydv0r6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-3pppydv0r6] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-3pppydv0r6] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-3pppydv0r6] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-3pppydv0r6] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-3pppydv0r6] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-3pppydv0r6] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-3pppydv0r6 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-3pppydv0r6] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-3pppydv0r6 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
body[b-wnzfuxewaz] {
    background: #f5f7fb;
    color: #222;
    line-height: 1.7;
}

/* NAV */
nav[b-wnzfuxewaz] {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 18px 40px;
    color: white;
}

    nav h1[b-wnzfuxewaz] {
        font-size: 1.2rem;
        font-weight: 600;
    }

/* HERO */
.hero[b-wnzfuxewaz] {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 120px 20px 100px;
    text-align: center;
}

    .hero h2[b-wnzfuxewaz] {
        font-size: 2.8rem;
        font-weight: 700;
    }

    .hero p[b-wnzfuxewaz] {
        margin-top: 15px;
        font-size: 1.2rem;
        opacity: 0.9;
    }

/* CONTENT */
.container[b-wnzfuxewaz] {
    max-width: 900px;
    margin: auto;
    padding: 20px 20px;
}

.section[b-wnzfuxewaz] {
    margin-bottom: 70px;
}

    .section h3[b-wnzfuxewaz] {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: #1e3c72;
    }

    .section p[b-wnzfuxewaz] {
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

.highlight-box[b-wnzfuxewaz] {
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* QUOTE STYLE */
.quote[b-wnzfuxewaz] {
    font-style: italic;
    font-size: 1.2rem;
    margin: 30px 0;
    padding-left: 20px;
    border-left: 4px solid #2a5298;
    color: #444;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Home.razor.css */
.hero-section[b-6dvtsng652] {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 50px;
}
.hero-section h1[b-6dvtsng652] {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.hero-section p[b-6dvtsng652] {
    margin-top: 15px;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.section-title[b-6dvtsng652] {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2[b-6dvtsng652] {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3c72;
}
.grid[b-6dvtsng652] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card[b-6dvtsng652] {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.card h3[b-6dvtsng652] {
    font-size: 1.0rem;
    font-weight: 700;
    color: #1e3c72;
}
.btn[b-6dvtsng652] {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #ffcc00;
    color: #222;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn:hover[b-6dvtsng652] {
    background: #ffaa00;
    transform: translateY(-3px);
}

.parallax[b-6dvtsng652] {
    position: relative;
    background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=900&q=40') center/cover fixed;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 50px;
}

.parallax h2[b-6dvtsng652] {
    background: rgba(0,0,0,0.6);
    padding: 20px 40px;
    border-radius: 10px;
}

/* Add the rest of your styles for .phone, .qr-box, .scan-line, etc. from home.html */
/* DEMO SECTION */
.demo-section[b-6dvtsng652] {
    padding: 120px 20px;
    text-align: center;
}

.demo-container[b-6dvtsng652] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

/* PHONE MOCKUP */
.phone[b-6dvtsng652] {
    width: 260px;
    height: 500px;
    background: #111;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.screen[b-6dvtsng652] {
    background: #f5f7fb;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    padding: 30px;
}

/* QR BOX */
.qr-box[b-6dvtsng652] {
    width: 180px;
    height: 180px;
    background: repeating-linear-gradient( 45deg, #000, #000 10px, #fff 10px, #fff 20px );
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}

/* SCAN LINE */
.scan-line[b-6dvtsng652] {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #00ff88;
    animation: scan-b-6dvtsng652 2s infinite;
}

@keyframes scan-b-6dvtsng652 {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

/* NOTIFICATION */
.notification[b-6dvtsng652] {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    opacity: 100;
    transition: 0.5s ease;
}

    .notification.show[b-6dvtsng652] {
        opacity: 100;
    }

/* DEMO TEXT */
.demo-steps p[b-6dvtsng652] {
    font-size: 1.1rem;
    margin: 15px 0;
}
/* HIGHLIGHT */
.highlight[b-6dvtsng652] {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    border-radius: 20px;
    padding: 80px 30px;
    text-align: center;
    font-weight: 600;
}

    .highlight.show[b-6dvtsng652] {
        opacity: 100;
        transform: translateY(0);
    }
