/* /Layout/MainLayout.razor.rz.scp.css */
/* Modern Layout System */
.modern-layout[b-j6z3obvtjt] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.modern-header[b-j6z3obvtjt] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.modern-main[b-j6z3obvtjt] {
    flex: 1;
    padding: 2rem 0;
}

.modern-footer[b-j6z3obvtjt] {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.modern-footer .container[b-j6z3obvtjt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.modern-footer p[b-j6z3obvtjt] {
    margin: 0;
    color: #6c757d;
}

.footer-links a[b-j6z3obvtjt] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover[b-j6z3obvtjt] {
    color: #007bff;
}

.footer-legal-link[b-j6z3obvtjt] {
    font-size: 0.9rem;
}

.footer-separator[b-j6z3obvtjt] {
    color: #6c757d;
    margin: 0 0.5rem;
}

.container[b-j6z3obvtjt] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container[b-j6z3obvtjt] {
        padding: 0 1rem;
    }
    
    .modern-main[b-j6z3obvtjt] {
        padding: 1rem 0;
    }
    
    .modern-footer .container[b-j6z3obvtjt] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Modern Navigation */
.modern-nav[b-wr9lelsv6c] {
    padding: 1rem 0;
}

.nav-content[b-wr9lelsv6c] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand[b-wr9lelsv6c] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #2d3748;
    font-weight: 600;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.brand:hover[b-wr9lelsv6c] {
    color: #4299e1;
    text-decoration: none;
}

.brand-icon[b-wr9lelsv6c] {
    font-size: 1.8rem;
}

.brand-text[b-wr9lelsv6c] {
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu[b-wr9lelsv6c] {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link[b-wr9lelsv6c] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link[b-wr9lelsv6c]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover[b-wr9lelsv6c]::before,
.nav-link.active[b-wr9lelsv6c]::before {
    opacity: 0.1;
}

.nav-link:hover[b-wr9lelsv6c],
.nav-link.active[b-wr9lelsv6c] {
    color: #667eea;
    text-decoration: none;
    transform: translateY(-2px);
}

.nav-link.active[b-wr9lelsv6c] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    font-weight: 600;
}

.nav-icon[b-wr9lelsv6c] {
    font-size: 1.1rem;
}

/* Mobile Navigation */
.mobile-toggle[b-wr9lelsv6c] {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    gap: 0.25rem;
}

.hamburger[b-wr9lelsv6c] {
    width: 25px;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-toggle[b-wr9lelsv6c] {
        display: flex;
    }
    
    .nav-menu[b-wr9lelsv6c] {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 1rem 1rem;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.expanded[b-wr9lelsv6c] {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link[b-wr9lelsv6c] {
        margin: 0 1rem;
        padding: 1rem 1.5rem;
        border-radius: 0.5rem;
    }
    
    .mobile-toggle.active .hamburger:nth-child(1)[b-wr9lelsv6c] {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active .hamburger:nth-child(2)[b-wr9lelsv6c] {
        opacity: 0;
    }
    
    .mobile-toggle.active .hamburger:nth-child(3)[b-wr9lelsv6c] {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}
