/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* === Site Wrapper === */
.site-wrapper[b-i8bdreab3v] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* === Header / Navbar === */
.site-header[b-i8bdreab3v] {
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container[b-i8bdreab3v] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand[b-i8bdreab3v] {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

.brand-icon[b-i8bdreab3v] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-links[b-i8bdreab3v] {
 display: flex;
    gap: 32px;
}

.nav-links a[b-i8bdreab3v], .nav-links[b-i8bdreab3v]  a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover[b-i8bdreab3v], .nav-links[b-i8bdreab3v]  a:hover {
    color: #00d4ff;
}

.nav-links[b-i8bdreab3v]  a.active {
    color: #00d4ff;
}

/* === Main Content === */
.site-main[b-i8bdreab3v] {
    flex: 1;
}

/* === Footer === */
.site-footer[b-i8bdreab3v] {
    background: #060614;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 24px 32px;
}

.footer-container[b-i8bdreab3v] {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand[b-i8bdreab3v] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-icon[b-i8bdreab3v] {
    width: 28px;
    height: 28px;
  border-radius: 6px;
}

.footer-links[b-i8bdreab3v] {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 24px;
}

.footer-links a[b-i8bdreab3v] {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover[b-i8bdreab3v] {
    color: #00d4ff;
}

.footer-copy[b-i8bdreab3v] {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
    margin: 0;
}

/* === Error UI === */
#blazor-error-ui[b-i8bdreab3v] {
    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-i8bdreab3v] {
        cursor: pointer;
        position: absolute;
     right: 0.75rem;
        top: 0.5rem;
    }

/* === Responsive === */
@media (max-width: 640px) {
    .navbar-container[b-i8bdreab3v] {
        padding: 0 16px;
    }

    .nav-links[b-i8bdreab3v] {
        gap: 20px;
    }

    .nav-links a[b-i8bdreab3v], .nav-links[b-i8bdreab3v]  a {
      font-size: 0.85rem;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu styles no longer needed - navigation is in MainLayout header */
