/* _content/TheNetwork_Website/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-j2i0obglh6] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-j2i0obglh6] {
    flex: 1;
    background: #302830;
    color: #d7d7d7;
    min-height: 100vh;
}

.sidebar[b-j2i0obglh6] {
    background: #302830;
    display: flex;
    flex-direction: column;
}

.content-inner[b-j2i0obglh6] {
    display: flex;
    gap: 1.5rem;
}

.main-content[b-j2i0obglh6] {
    flex: 1;
    min-height: 60vh;
    padding: 1rem 0;
}

.top-row[b-j2i0obglh6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height, 8rem);
    padding: 0 1rem;
}

.header-brand[b-j2i0obglh6] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-brand .logo[b-j2i0obglh6] {
    width: auto;
    height: 7rem;
    max-height: 8rem;
    object-fit: contain;
}

.header-brand .corp-name-img[b-j2i0obglh6] {
    height: 2.75rem;
    width: auto;
    object-fit: contain;
}

.header-brand img[b-j2i0obglh6] {
    height: auto;
    max-height: 6rem;
}

@media (max-width: 640.98px) {
    .top-row[b-j2i0obglh6] {
        justify-content: space-between;
        padding: 0 1rem;
    }

    .header-brand .logo[b-j2i0obglh6] { height: 3.25rem; }
    .header-brand .corp-name-img[b-j2i0obglh6] { height: 1.9rem; }

    .content-inner[b-j2i0obglh6] {
        flex-direction: column;
    }

    .sidebar[b-j2i0obglh6] {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 641px) {
    .page[b-j2i0obglh6] {
        flex-direction: row;
    }

    .sidebar[b-j2i0obglh6] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-j2i0obglh6] {
        position: sticky;
        top: 0;
        z-index: 20;
    }

    .top-row[b-j2i0obglh6], article[b-j2i0obglh6] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-j2i0obglh6] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-j2i0obglh6] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/TheNetwork_Website/Components/Layout/NavMenu.razor.rz.scp.css */
/* Sidebar Structure - Full-height boxed nav */
.sidebar[b-hlb3wp5gm9] {
    width: 260px;
    position: relative;
}

/* Make the nav panel fill the sidebar vertically without internal scroll */
.nav-scrollable > nav[b-hlb3wp5gm9] {
    position: absolute;
    /* Start at top of sidebar so box aligns with article top (no header gap) */
    top: 0; /* previously used var(--header-height) which created a gap */
    left: 0.5rem;
    right: 0.5rem;
    bottom: 1rem; /* leave small bottom gap */
    overflow: visible; /* no scrolling inside the panel */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1rem;
    background-color: var(--glass-strong);
    border: 1px solid rgba(160,160,160,0.2);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* Ensure sidebar content wrapper doesn't scroll separately */
.sidebar-content[b-hlb3wp5gm9] {
    height: 100vh;
    overflow: visible;
    padding-left: 0.25rem;
}

/* Ensure items still wrap and don't overflow the panel */
.nav-item[b-hlb3wp5gm9] { flex: 0 0 auto; }

/* Keep collapse transform behavior */
body.nav-collapsed .sidebar[b-hlb3wp5gm9] { transform: translateX(-100%); }
body.nav-collapsed .nav-scrollable > nav[b-hlb3wp5gm9] { opacity: 0; transform: translateX(-12px); }

/* Toggler styling - ensure always visible and clickable */
.sidebar-toggler[b-hlb3wp5gm9] {
    position: absolute;
    left: -22px; /* hang half outside the nav box */
    top: 8px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 15000; /* ensure above header and overlay */
    box-shadow: 0 6px 12px rgba(0,0,0,0.45);
    pointer-events: auto;
}

.sidebar-toggler[b-hlb3wp5gm9]::before { content: '\2715'; font-size: 18px; }
body.nav-collapsed .sidebar-toggler[b-hlb3wp5gm9]::before { content: '\2630'; }

/* Strongly scoped link styles to override global/Bootstrap conflicts */
.nav-scrollable > nav .nav-link[b-hlb3wp5gm9] {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.5rem 0.75rem !important;
    color: var(--muted) !important;
    background: transparent !important;
    border-radius: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.nav-scrollable > nav .nav-link:hover[b-hlb3wp5gm9] {
    background: rgba(255,255,255,0.04) !important;
    color: var(--white) !important;
}

.nav-scrollable > nav .active[b-hlb3wp5gm9],
.nav-scrollable > nav .nav-link.active[b-hlb3wp5gm9] {
    background: linear-gradient(135deg, rgba(79,195,247,0.12), rgba(41,182,246,0.08)) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
}

/* Ensure icons in links inherit color */
.nav-scrollable > nav .nav-link .bi[b-hlb3wp5gm9] {
    color: currentColor !important;
    font-size: 1.05rem !important;
}

/* Restore per-item spacing/appearance */
.nav-item[b-hlb3wp5gm9] {
    background: transparent;
    padding: 0.45rem 0.5rem;
    margin: 0.25rem 0;
    border-radius: 6px;
}

@media (max-width: 640px) {
    .nav-scrollable > nav[b-hlb3wp5gm9] { left: 0.5rem; right: 0.5rem; }
}
/* _content/TheNetwork_Website/Components/Layout/UserStatus.razor.rz.scp.css */
/* USER STATUS COMPONENT - LAYOUT ONLY (STYLING IN GLOBAL CSS) */
.user-status[b-gxm2xu3brd] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto; /* Push to right side */
}

.user-info[b-gxm2xu3brd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.user-details[b-gxm2xu3brd] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.user-actions[b-gxm2xu3brd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logout-form[b-gxm2xu3brd] {
    margin: 0;
    display: flex;
}

.guest-actions[b-gxm2xu3brd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-status[b-gxm2xu3brd] {
        gap: 0.5rem;
    }
    
    .user-info[b-gxm2xu3brd] {
        gap: 0.5rem;
    }
    
    .username[b-gxm2xu3brd] {
        font-size: 0.8rem;
    }
    
    .user-role[b-gxm2xu3brd] {
        font-size: 0.7rem;
    }
    
    .guest-actions[b-gxm2xu3brd] {
        gap: 0.5rem;
    }
}
/* _content/TheNetwork_Website/Components/NetworkArticle.razor.rz.scp.css */
/* All network-article styles moved to global app.css to prevent conflicts */
/* Component-specific CSS disabled to avoid scoped CSS conflicts */
/* _content/TheNetwork_Website/Components/Pages/Admin.razor.rz.scp.css */
/* Admin page scoped styles moved from roles.css to reduce global footprint */
.admin-dashboard[b-g4exave2qh] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-header[b-g4exave2qh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.admin-header h1[b-g4exave2qh] {
    color: #dc2626;
    font-size: 2.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-grid[b-g4exave2qh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-card[b-g4exave2qh] {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-card:hover[b-g4exave2qh] {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-header[b-g4exave2qh] {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 1rem;
}

.card-header h3[b-g4exave2qh] {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-content[b-g4exave2qh] {
    padding: 1.5rem;
}

.admin-actions[b-g4exave2qh] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.quick-stats[b-g4exave2qh] {
    display: flex;
    gap: 1rem;
}

.stat[b-g4exave2qh] {
    text-align: center;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.375rem;
    flex: 1;
}

.stat-number[b-g4exave2qh] {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.stat-label[b-g4exave2qh] {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.discord-status[b-g4exave2qh] {
    margin-top: 1rem;
}

.status-indicator[b-g4exave2qh] {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
}

.status-indicator.online[b-g4exave2qh] {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.status-indicator.offline[b-g4exave2qh] {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.system-status[b-g4exave2qh] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-item[b-g4exave2qh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #f9fafb;
    border-radius: 0.375rem;
}

.status-label[b-g4exave2qh] {
    font-weight: 600;
    color: #374151;
}

.status-value[b-g4exave2qh] {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-value.online[b-g4exave2qh] {
    background: #16a34a;
    color: white;
}

.status-value.offline[b-g4exave2qh] {
    background: #dc2626;
    color: white;
}

.admin-activity[b-g4exave2qh] {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.admin-activity h3[b-g4exave2qh] {
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-list[b-g4exave2qh] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-item[b-g4exave2qh] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.375rem;
    border-left: 4px solid #2563eb;
}

.activity-time[b-g4exave2qh] {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
}

.activity-description[b-g4exave2qh] {
    color: #374151;
}

.activity-user[b-g4exave2qh] {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
}

.no-activity[b-g4exave2qh] {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    padding: 2rem;
}
/* _content/TheNetwork_Website/Components/Pages/Home.razor.rz.scp.css */
.home-content[b-h085spjw38] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 20px;
    padding: 10px;
    align-items: start;
}

.left-column[b-h085spjw38] {
    display: flex;
    flex-direction: column;
}

.right-column[b-h085spjw38] {
    display: flex;
    flex-direction: column;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .home-content[b-h085spjw38] {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}
/* _content/TheNetwork_Website/Components/Pages/PageAccount.razor.rz.scp.css */
.account-page[b-8qoyaowxhj] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Profile Card */
.profile-card[b-8qoyaowxhj] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-header[b-8qoyaowxhj] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-image[b-8qoyaowxhj] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(79, 195, 247, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.profile-placeholder[b-8qoyaowxhj] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    border: 3px solid rgba(79, 195, 247, 0.5);
}

.profile-details h3[b-8qoyaowxhj] {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.profile-details .email[b-8qoyaowxhj] {
    color: #b0bec5;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

/* Form Styling */
.form-group[b-8qoyaowxhj] {
    margin-bottom: 1.5rem;
}

.form-group label[b-8qoyaowxhj] {
    color: #e1f5fe;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.input-group[b-8qoyaowxhj] {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.form-control[b-8qoyaowxhj] {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus[b-8qoyaowxhj] {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #4fc3f7;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.2);
}

.form-control[b-8qoyaowxhj]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-text[b-8qoyaowxhj] {
    color: #b0bec5;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Discord Integration tweaks kept here */
.discord-info[b-8qoyaowxhj] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.discord-status .bi-discord[b-8qoyaowxhj] {
    font-size: 2rem;
    color: #7289da;
}

/* Permissions Grid */
.permissions-grid[b-8qoyaowxhj] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.permission-item[b-8qoyaowxhj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: #e8f5e8;
    font-size: 0.9rem;
}

.permission-item .bi-check-circle[b-8qoyaowxhj] {
    color: #4caf50;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .account-page[b-8qoyaowxhj] {
        padding: 1rem;
    }
    
    .profile-header[b-8qoyaowxhj] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .input-group[b-8qoyaowxhj] {
        flex-direction: column;
    }
    
    .permissions-grid[b-8qoyaowxhj] {
        grid-template-columns: 1fr;
    }
    
    .section[b-8qoyaowxhj] {
        padding: 1.5rem;
    }
    
    .account-container h1[b-8qoyaowxhj] {
        font-size: 2rem;
    }
}

/* Role info layout kept component-specific */
.role-info[b-8qoyaowxhj] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.current-role h4[b-8qoyaowxhj] {
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.role-description[b-8qoyaowxhj] {
    color: #b0bec5;
    font-style: italic;
    margin: 0;
}

.permissions-list h5[b-8qoyaowxhj] {
    color: #4fc3f7;
    margin-bottom: 1rem;
}
