/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Page wrapper - full width layout */
.page-wrapper[b-vlrijgmh8v] {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

/* Main content - always full width */
.main-content[b-vlrijgmh8v] {
    flex: 1;
    width: 100%;
    min-height: 100vh;
    padding: 1rem;
    padding-left: 70px; /* Space for menu trigger */
    box-sizing: border-box;
}

/* Sidebar container - handles hover zone */
.sidebar-container[b-vlrijgmh8v] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 60px; /* Width of trigger area */
    z-index: 1040;
}

/* Menu trigger button */
.menu-trigger[b-vlrijgmh8v] {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6f42c1 0%, #ff4fa3 100%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    transition: all 0.3s ease;
    border-radius: 0 0 12px 0;
    box-shadow: 2px 2px 10px rgba(111, 66, 193, 0.3);
}

.menu-trigger:hover[b-vlrijgmh8v] {
    background: linear-gradient(135deg, #7c4fd4 0%, #ff6bb3 100%);
    box-shadow: 2px 2px 15px rgba(111, 66, 193, 0.5);
}

/* Hamburger icon */
.hamburger-icon[b-vlrijgmh8v] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 20px;
    gap: 4px;
}

.hamburger-icon span[b-vlrijgmh8v] {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Sidebar panel - hidden by default */
.sidebar[b-vlrijgmh8v] {
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: linear-gradient(180deg, #1b0b23 0%, #260835 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Show sidebar on hover of the container */
.sidebar-container:hover .sidebar[b-vlrijgmh8v] {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* Change hamburger to X on hover */
.sidebar-container:hover .hamburger-icon span:nth-child(1)[b-vlrijgmh8v] {
    transform: rotate(45deg) translate(5px, 5px);
}

.sidebar-container:hover .hamburger-icon span:nth-child(2)[b-vlrijgmh8v] {
    opacity: 0;
}

.sidebar-container:hover .hamburger-icon span:nth-child(3)[b-vlrijgmh8v] {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .main-content[b-vlrijgmh8v] {
        padding-left: 70px;
    }
}

@media (max-width: 768px) {
    .main-content[b-vlrijgmh8v] {
        padding-left: 1rem;
        padding-top: 70px;
    }
    
    .sidebar-container[b-vlrijgmh8v] {
        width: 60px;
    }
}

/* Print styles */
@media print {
    .sidebar-container[b-vlrijgmh8v],
    .menu-trigger[b-vlrijgmh8v] {
        display: none !important;
    }
    
    .main-content[b-vlrijgmh8v] {
        padding: 0 !important;
    }
    
    .page-wrapper[b-vlrijgmh8v] {
        display: block !important;
    }
}

/* Blazor error UI */
#blazor-error-ui[b-vlrijgmh8v] {
    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-vlrijgmh8v] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */

/* Sidebar top section */
.sidebar-top[b-vwkuksl5ec] {
    padding: 70px 1rem 1rem 1rem; /* Extra top padding for menu button */
    background: linear-gradient(180deg, #2c0730 0%, #1b0b23 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand[b-vwkuksl5ec] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.brand-icon[b-vwkuksl5ec] {
    font-size: 1.3rem;
}

.brand-text[b-vwkuksl5ec] {
    white-space: nowrap;
}

/* Sidebar navigation */
.sidebar-nav[b-vwkuksl5ec] {
    padding: 1rem;
    background: linear-gradient(180deg, #1b0b23 0%, #260835 100%);
    color: #cfc7e6;
    min-height: calc(100vh - 120px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Section styling */
.nav-section[b-vwkuksl5ec] {
    margin-bottom: 0.5rem;
}

.section-title[b-vwkuksl5ec] {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #b6a6d6;
    letter-spacing: 0.5px;
    margin: 0.75rem 0 0.5rem 0;
    padding-left: 0.5rem;
}

/* Navigation items */
.nav-item[b-vwkuksl5ec] {
    margin-bottom: 0.15rem;
}

.nav-link[b-vwkuksl5ec] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    color: #d9d2f0;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.nav-link:hover[b-vwkuksl5ec] {
    background: linear-gradient(90deg, rgba(111, 33, 201, 0.7), rgba(235, 50, 180, 0.7));
    color: #fff;
    transform: translateX(3px);
}

.nav-link.active[b-vwkuksl5ec] {
    background: linear-gradient(90deg, rgba(111, 33, 201, 0.95), rgba(235, 50, 180, 0.95));
    color: #fff;
    font-weight: 500;
}

/* Spacer for pushing user area to bottom */
.nav-spacer[b-vwkuksl5ec] {
    flex: 1 1 auto;
    min-height: 1rem;
}

/* User area at bottom */
.user-area[b-vwkuksl5ec] {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.connected[b-vwkuksl5ec] {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #cfc7e6;
}

.connected strong[b-vwkuksl5ec] {
    color: #fff;
}

.logout-form[b-vwkuksl5ec] {
    margin-top: 0.5rem;
}

.btn-logout[b-vwkuksl5ec] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    width: 100%;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.btn-logout:hover[b-vwkuksl5ec] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Small login link */
.nav-link.small[b-vwkuksl5ec] {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar-top[b-vwkuksl5ec] {
        padding-top: 70px;
    }
    
    .brand[b-vwkuksl5ec] {
        font-size: 1rem;
    }
    
    .nav-link[b-vwkuksl5ec] {
        padding: 0.55rem 0.65rem;
        font-size: 0.88rem;
    }
    
    .sidebar-nav[b-vwkuksl5ec] {
        min-height: calc(100vh - 100px);
        overflow-y: auto;
    }
}

/* Legacy styles - keep for compatibility */
.navbar-toggler[b-vwkuksl5ec] {
    display: none;
}

.nav-scrollable[b-vwkuksl5ec] {
    display: block;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-hero[b-qvv7j6rz96] {
    background: linear-gradient(180deg, rgba(255, 250, 253, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 3.5rem 0 2.5rem 0;
    margin-bottom: 1.5rem;
}

.home-hero .hero-inner[b-qvv7j6rz96] {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-icon img[b-qvv7j6rz96] {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #9b00ff, #ff4da6);
    padding: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.hero-bar[b-qvv7j6rz96] {
    height: 34px;
    width: 60%;
    margin: 1.25rem auto 0.5rem auto;
    background: linear-gradient(90deg, #6a00ff, #ff2aa6);
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(106,0,255,0.12);
}

.hero-subtitle[b-qvv7j6rz96] {
    color: #5b5b5b;
    margin-top: .75rem;
}

.cards-section[b-qvv7j6rz96] {
    max-width: 1100px;
    margin: 0 auto 4rem auto;
}

.action-card[b-qvv7j6rz96] {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.card-icon-circle[b-qvv7j6rz96] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon[b-qvv7j6rz96] {
    font-size: 28px;
}

.border-success[b-qvv7j6rz96] {
    border: 3px solid #198754 !important;
}

.border-primary[b-qvv7j6rz96] {
    border: 3px solid #0d6efd !important;
}

.border-purple[b-qvv7j6rz96] {
    border: 3px solid #6f42c1 !important;
}

.btn-purple[b-qvv7j6rz96] {
    background-color: #6f42c1;
    border-color: #6f42c1;
}

@media (min-width: 641px) {
    .home-hero[b-qvv7j6rz96] { padding: 4.5rem 0 3rem 0; }
    .hero-icon img[b-qvv7j6rz96] { width: 120px; height: 120px; padding: 24px; }
    .hero-bar[b-qvv7j6rz96] { height: 36px; }
}
