/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-hnp8cpx1fh] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-hnp8cpx1fh] {
    flex: 1;
}

.content[b-hnp8cpx1fh] {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 1rem;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar[b-nj04crnsoa] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container[b-nj04crnsoa] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    width: 100%;
}

.nav-menu[b-nj04crnsoa] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link[b-nj04crnsoa] {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover[b-nj04crnsoa] {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
}

.nav-link.active[b-nj04crnsoa] {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-icon-login[b-nj04crnsoa] {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: white;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
    flex: 0 0 auto;
}

.btn-icon-login:hover[b-nj04crnsoa] {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.icon-login[b-nj04crnsoa] {
    width: 20px;
    height: 20px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.761 0 5-2.239 5-5s-2.239-5-5-5-5 2.239-5 5 2.239 5 5 5zm0 2c-3.33 0-10 1.671-10 5v3h20v-3c0-3.329-6.67-5-10-5z'/%3E%3C/svg%3E");
}

.nav-auth[b-nj04crnsoa] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.user-greeting[b-nj04crnsoa] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-logout[b-nj04crnsoa] {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-logout:hover[b-nj04crnsoa] {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.hamburger[b-nj04crnsoa] {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span[b-nj04crnsoa] {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1)[b-nj04crnsoa] {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2)[b-nj04crnsoa] {
    opacity: 0;
}

.hamburger.active span:nth-child(3)[b-nj04crnsoa] {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .hamburger[b-nj04crnsoa] {
        display: flex;
    }

    .nav-container[b-nj04crnsoa] {
        height: 60px;
    }

    .nav-menu[b-nj04crnsoa] {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #5568d3;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 1rem 0;
        justify-content: flex-start;
        flex: unset;
    }

    .nav-menu.active[b-nj04crnsoa] {
        left: 0;
    }

    .nav-link[b-nj04crnsoa] {
        width: 100%;
        padding: 1rem;
        border-radius: 0;
    }

    .nav-auth[b-nj04crnsoa] {
        width: 100%;
        flex-direction: row;
        gap: 0.5rem;
        margin-left: 0;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #5568d3;
        justify-content: flex-end;
    }

    .btn-logout[b-nj04crnsoa],
    .btn-icon-login[b-nj04crnsoa] {
        width: auto;
    }
}
/* /Pages/Login.razor.rz.scp.css */
.auth-page-login[b-491808z60f] {
    background: radial-gradient(circle at top right, #e8f1ff 0%, #f8fbff 45%, #ffffff 100%);
}

.auth-card-login[b-491808z60f] {
    max-width: 480px;
    border-color: #dce8ff;
}
/* /Pages/SignUp.razor.rz.scp.css */
.auth-card-signup[b-mc7sb1m61r] {
    max-width: 540px;
    border-color: #d4f1df;
}
