/* /Components/Layout/AppLayout.razor.rz.scp.css */
/* ========================================
   APP LAYOUT - MODERN ADMIN DESIGN
   ======================================== */

[b-cbjlzu8k8t] .app-container {
    display: flex;
    min-height: 100vh;
    background: #F9FAFB;
}

/* Sidebar */
[b-cbjlzu8k8t] .app-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

[b-cbjlzu8k8t] .sidebar-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[b-cbjlzu8k8t] .sidebar-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366F1 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
}

[b-cbjlzu8k8t] .sidebar-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Sidebar Navigation */
[b-cbjlzu8k8t] .sidebar-nav {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

[b-cbjlzu8k8t] .sidebar-nav::-webkit-scrollbar {
    width: 6px;
}

[b-cbjlzu8k8t] .sidebar-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
}

[b-cbjlzu8k8t] .sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
}

[b-cbjlzu8k8t] .sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

[b-cbjlzu8k8t] .sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9CA3AF;
    border-radius: 0.75rem;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

[b-cbjlzu8k8t] .sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #4F46E5, #10B981);
    border-radius: 0 9999px 9999px 0;
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

[b-cbjlzu8k8t] .sidebar-link:hover {
    background: rgba(79, 70, 229, 0.1);
    color: #FFFFFF;
}

[b-cbjlzu8k8t] .sidebar-link:hover::before {
    transform: translateY(-50%) scaleY(1);
}

[b-cbjlzu8k8t] .sidebar-link.active {
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.2) 0%, 
        rgba(99, 102, 241, 0.15) 100%);
    color: #FFFFFF;
}

[b-cbjlzu8k8t] .sidebar-link.active::before {
    transform: translateY(-50%) scaleY(1);
}

[b-cbjlzu8k8t] .sidebar-link .icon {
    font-size: 1.125rem;
    width: 1.5rem;
    text-align: center;
}

/* Sidebar Footer */
[b-cbjlzu8k8t] .sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[b-cbjlzu8k8t] .sidebar-link.logout {
    color: #EF4444;
}

[b-cbjlzu8k8t] .sidebar-link.logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Main Content Area */
[b-cbjlzu8k8t] .app-main {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* App Header */
[b-cbjlzu8k8t] .app-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    padding: 2rem;
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

[b-cbjlzu8k8t] .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

[b-cbjlzu8k8t] .header-content h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #0F172A 0%, #4F46E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[b-cbjlzu8k8t] .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* App Content */
[b-cbjlzu8k8t] .app-content {
    flex: 1;
    padding: 3rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    [b-cbjlzu8k8t] .app-sidebar {
        width: 240px;
    }

    [b-cbjlzu8k8t] .app-main {
        margin-left: 240px;
    }
}

@media (max-width: 768px) {
    [b-cbjlzu8k8t] .app-sidebar {
        transform: translateX(-100%);
        transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    [b-cbjlzu8k8t] .app-sidebar.open {
        transform: translateX(0);
    }

    [b-cbjlzu8k8t] .app-main {
        margin-left: 0;
    }

    [b-cbjlzu8k8t] .app-content {
        padding: 1.5rem;
    }
}

/* Blazor Error UI */
[b-cbjlzu8k8t] #blazor-error-ui {
    background: #EF4444;
    color: #FFFFFF;
    padding: 1rem;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9999;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: none;
    max-width: 400px;
    animation: slideInFromRight-b-cbjlzu8k8t 0.3s ease-out;
}

[b-cbjlzu8k8t] #blazor-error-ui .reload {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 0.5rem;
}

[b-cbjlzu8k8t] #blazor-error-ui .dismiss {
    cursor: pointer;
    margin-left: 1rem;
    font-size: 1.25rem;
    opacity: 0.8;
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

[b-cbjlzu8k8t] #blazor-error-ui .dismiss:hover {
    opacity: 1;
}

@keyframes slideInFromRight-b-cbjlzu8k8t {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* /Components/Layout/AppSidebarInteractive.razor.rz.scp.css */
/* Mobile Header (hidden on desktop) */
.mobile-header[b-dyw3q67sgx] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #1e293b;
    padding: 0 1rem;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-logo[b-dyw3q67sgx] {
    height: 32px;
    display: flex;
    align-items: center;
}

/* Hamburger Button */
.hamburger[b-dyw3q67sgx] {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span[b-dyw3q67sgx] {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    transform-origin: center;
}

.hamburger.active span:nth-child(1)[b-dyw3q67sgx] {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2)[b-dyw3q67sgx] {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3)[b-dyw3q67sgx] {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Sidebar Overlay (mobile only) */
.sidebar-overlay[b-dyw3q67sgx] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* Sidebar */
.app-sidebar[b-dyw3q67sgx] {
    width: 260px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 999;
    transition: transform 0.3s ease;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.sidebar-header[b-dyw3q67sgx] {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo[b-dyw3q67sgx] {
    display: flex;
    align-items: center;
    height: 40px;
}

.sidebar-nav[b-dyw3q67sgx] {
    flex: 1;
    padding: 1.5rem 0;
}

.sidebar-link[b-dyw3q67sgx] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.sidebar-link:hover[b-dyw3q67sgx] {
    background: rgba(59, 130, 246, 0.15);
    color: white;
    border-left-color: #3b82f6;
}

.sidebar-link .icon[b-dyw3q67sgx] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.sidebar-link .icon svg[b-dyw3q67sgx] {
    width: 20px;
    height: 20px;
}

.sidebar-footer[b-dyw3q67sgx] {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-link.logout[b-dyw3q67sgx] {
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-link.logout:hover[b-dyw3q67sgx] {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-header[b-dyw3q67sgx] {
        display: flex;
    }

    .sidebar-overlay[b-dyw3q67sgx] {
        display: block;
        opacity: 1;
        pointer-events: all;
        transition: opacity 0.3s ease;
    }

    .app-sidebar[b-dyw3q67sgx] {
        top: 60px;
        bottom: 0;
        height: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .app-sidebar.open[b-dyw3q67sgx] {
        transform: translateX(0);
    }

    .sidebar-header[b-dyw3q67sgx] {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-header[b-dyw3q67sgx] {
        display: none !important;
    }

    .sidebar-overlay[b-dyw3q67sgx] {
        display: none !important;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-7d9qgkqp7j] {
    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-7d9qgkqp7j] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/PublicLayout.razor.rz.scp.css */
/* ========================================
   PUBLIC LAYOUT - MODERN DESIGN
   ======================================== */

/* Header Styles - Full Width */
[b-2wtjtzxo7c] .public-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 2px solid rgba(14, 14, 14, 0.08);
    box-shadow: 0 4px 12px 0 rgba(14, 14, 14, 0.06);
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

[b-2wtjtzxo7c] .public-header.scrolled {
    box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

[b-2wtjtzxo7c] .public-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    gap: 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Logo */
[b-2wtjtzxo7c] .logo {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'DM Serif Display', Georgia, serif;
    letter-spacing: -0.02em;
    color: #0E0E0E;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

[b-2wtjtzxo7c] .logo:hover {
    color: #C84B2F;
}

/* Navigation Menu */
[b-2wtjtzxo7c] .nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

[b-2wtjtzxo7c] .nav-link {
    position: relative;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #6B6760;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
}

[b-2wtjtzxo7c] .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: #C84B2F;
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 9999px;
}

[b-2wtjtzxo7c] .nav-link:hover {
    color: #0E0E0E;
}

[b-2wtjtzxo7c] .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Navigation Actions */
[b-2wtjtzxo7c] .nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

[b-2wtjtzxo7c] .btn-login {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #F5F2EC;
    background: #0E0E0E;
    border-radius: 6px;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px 0 rgba(14, 14, 14, 0.04);
}

[b-2wtjtzxo7c] .btn-login:hover {
    opacity: 0.8;
}

/* Visibility Helpers */
[b-2wtjtzxo7c] .mobile-only {
    display: none;
}

[b-2wtjtzxo7c] .desktop-only {
    display: inline-flex;
}

/* Mobile Menu Toggle */
[b-2wtjtzxo7c] .mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    color: #0F172A;
    background: transparent;
    border: 2px solid #D1D5DB;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

[b-2wtjtzxo7c] .mobile-menu-toggle:hover {
    background: #F3F4F6;
    border-color: #4F46E5;
    color: #4F46E5;
}

/* Main Content */
[b-2wtjtzxo7c] .public-content {
    min-height: calc(100vh - 80px);
    margin-bottom: 8rem;
}

/* Footer - Full Width */
[b-2wtjtzxo7c] .public-footer {
    width: 100%;
    background: #FFFFFF;
    color: #0E0E0E;
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(14, 14, 14, 0.08);
    box-shadow: 0 -4px 12px 0 rgba(14, 14, 14, 0.04);
    position: relative;
    overflow: hidden;
}

[b-2wtjtzxo7c] .footer-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

[b-2wtjtzxo7c] .footer-logo {
    display: inline-block;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

[b-2wtjtzxo7c] .footer-logo:hover {
    opacity: 0.7;
}

[b-2wtjtzxo7c] .footer-copy {
    color: rgba(14, 14, 14, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

[b-2wtjtzxo7c] .footer-copy a {
    color: rgba(14, 14, 14, 0.4);
    text-decoration: none;
    border-bottom: 1px solid rgba(14, 14, 14, 0.15);
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

[b-2wtjtzxo7c] .footer-copy a:hover {
    color: #0E0E0E;
    border-bottom-color: rgba(14, 14, 14, 0.3);
}

[b-2wtjtzxo7c] .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

[b-2wtjtzxo7c] .footer-links li {
    margin: 0;
}

[b-2wtjtzxo7c] .footer-links a {
    color: rgba(14, 14, 14, 0.6);
    font-size: 0.875rem;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

[b-2wtjtzxo7c] .footer-links a:hover {
    color: #0E0E0E;
}

/* Responsive Design */
@media (max-width: 1024px) {
    [b-2wtjtzxo7c] .nav-menu {
        gap: 1rem;
    }

    [b-2wtjtzxo7c] .nav-link {
        padding: 0.625rem 1rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    [b-2wtjtzxo7c] .public-nav {
        position: relative;
    }

    [b-2wtjtzxo7c] .mobile-menu-toggle {
        display: flex;
        color: #0E0E0E;
        border-color: rgba(14, 14, 14, 0.2);
    }

    [b-2wtjtzxo7c] .mobile-menu-toggle:hover {
        background: rgba(200, 75, 47, 0.1);
        border-color: #C84B2F;
        color: #C84B2F;
    }

    [b-2wtjtzxo7c] .nav-menu {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #FFFFFF;
        padding: 1rem;
        border-radius: 0.75rem;
        box-shadow: 0 10px 25px -5px rgba(14, 14, 14, 0.15), 0 4px 10px -2px rgba(14, 14, 14, 0.05);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(14, 14, 14, 0.1);
        z-index: 100;
    }

    [b-2wtjtzxo7c] .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    [b-2wtjtzxo7c] .nav-link {
        padding: 1rem 1.25rem;
        border-radius: 0.5rem;
        text-align: left;
        color: #6B6760;
        font-size: 1rem;
    }

    [b-2wtjtzxo7c] .nav-link::after {
        display: none;
    }

    [b-2wtjtzxo7c] .nav-link:hover {
        background: rgba(200, 75, 47, 0.08);
        color: #0E0E0E;
    }

    [b-2wtjtzxo7c] .nav-link:active {
        background: rgba(200, 75, 47, 0.15);
    }

    [b-2wtjtzxo7c] .btn-login {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-block;
    }

    [b-2wtjtzxo7c] .mobile-only {
        display: inline-block;
    }

    [b-2wtjtzxo7c] .desktop-only {
        display: none;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ljoa855wle],
.components-reconnect-repeated-attempt-visible[b-ljoa855wle],
.components-reconnect-failed-visible[b-ljoa855wle],
.components-pause-visible[b-ljoa855wle],
.components-resume-failed-visible[b-ljoa855wle],
.components-rejoining-animation[b-ljoa855wle] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ljoa855wle],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ljoa855wle],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ljoa855wle],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ljoa855wle],
#components-reconnect-modal.components-reconnect-retrying[b-ljoa855wle],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ljoa855wle],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ljoa855wle],
#components-reconnect-modal.components-reconnect-failed[b-ljoa855wle],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ljoa855wle] {
    display: block;
}


#components-reconnect-modal[b-ljoa855wle] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ljoa855wle 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ljoa855wle 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ljoa855wle 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ljoa855wle]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ljoa855wle 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ljoa855wle {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ljoa855wle {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ljoa855wle {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ljoa855wle] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ljoa855wle] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ljoa855wle] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ljoa855wle] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ljoa855wle] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ljoa855wle] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ljoa855wle] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ljoa855wle 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ljoa855wle] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ljoa855wle {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/App/Dashboard.razor.rz.scp.css */
.sidebar-link .icon[b-n2krl0o5uf] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.sidebar-link .icon svg[b-n2krl0o5uf] {
    width: 20px;
    height: 20px;
}

.dashboard-container[b-n2krl0o5uf] {
    padding: 2rem;
}

.dashboard-welcome[b-n2krl0o5uf] {
    margin-bottom: 3rem;
}

.dashboard-welcome h2[b-n2krl0o5uf] {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.dashboard-welcome p[b-n2krl0o5uf] {
    color: #6b7280;
    font-size: 1.125rem;
}

.dashboard-grid[b-n2krl0o5uf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.dashboard-card[b-n2krl0o5uf] {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-card:hover[b-n2krl0o5uf] {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-icon[b-n2krl0o5uf] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.75rem;
    background: #EEEDFE;
    color: #534AB7;
}

.card-icon svg[b-n2krl0o5uf] {
    width: 26px;
    height: 26px;
}

.card-content h3[b-n2krl0o5uf] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.card-number[b-n2krl0o5uf] {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    font-variant-numeric: tabular-nums;
}

.card-subtitle[b-n2krl0o5uf] {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

.dashboard-section[b-n2krl0o5uf] {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.dashboard-section h3[b-n2krl0o5uf] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.activity-list[b-n2krl0o5uf] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.activity-item[b-n2krl0o5uf] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
}

.activity-item:hover[b-n2krl0o5uf] {
    background: #f9fafb;
}

.activity-icon[b-n2krl0o5uf] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #f3f4f6;
    color: #534AB7;
}

.activity-icon svg[b-n2krl0o5uf] {
    width: 18px;
    height: 18px;
}

.activity-content p[b-n2krl0o5uf] {
    margin: 0;
}

.activity-content strong[b-n2krl0o5uf] {
    color: #1f2937;
    font-weight: 600;
}

.activity-time[b-n2krl0o5uf] {
    font-size: 0.875rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .dashboard-container[b-n2krl0o5uf] {
        padding: 1rem;
    }

    .dashboard-grid[b-n2krl0o5uf] {
        grid-template-columns: 1fr;
    }

    .dashboard-card[b-n2krl0o5uf] {
        padding: 1.25rem;
    }
}
/* /Components/Pages/Public/Markets.razor.rz.scp.css */
/* Markets page specific styles */

/* Make the Espansione section label match the Settori section label */
.territory-section .section-label-line[b-ogxrrdn1wj] {
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, #4f46e5, #60a5fa);
}

.territory-section .section-label-text[b-ogxrrdn1wj] {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4f46e5;
}
/* /Components/Shared/CookieConsent.razor.rz.scp.css */
.cookie-consent-banner[b-ycfblam2q1] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slideUp-b-ycfblam2q1 0.3s ease-out;
}

@keyframes slideUp-b-ycfblam2q1 {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-content[b-ycfblam2q1] {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text[b-ycfblam2q1] {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text strong[b-ycfblam2q1] {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-consent-links[b-ycfblam2q1] {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.cookie-consent-links a[b-ycfblam2q1] {
    color: #f9fafb;
    text-decoration: underline;
    opacity: 0.8;
}

.cookie-consent-links a:hover[b-ycfblam2q1] {
    opacity: 1;
}

.cookie-consent-links span[b-ycfblam2q1] {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.cookie-consent-actions[b-ycfblam2q1] {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-consent[b-ycfblam2q1] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-technical[b-ycfblam2q1] {
    background: transparent;
    color: #f9fafb;
    border: 1px solid rgba(249, 250, 251, 0.3);
}

.btn-technical:hover[b-ycfblam2q1] {
    background: rgba(249, 250, 251, 0.1);
    border-color: rgba(249, 250, 251, 0.5);
}

.btn-accept[b-ycfblam2q1] {
    background: #ef4444;
    color: white;
}

.btn-accept:hover[b-ycfblam2q1] {
    background: #dc2626;
}

@media (max-width: 768px) {
    .cookie-consent-content[b-ycfblam2q1] {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions[b-ycfblam2q1] {
        width: 100%;
        flex-direction: column;
    }

    .btn-consent[b-ycfblam2q1] {
        width: 100%;
    }
}
/* /Components/Shared/PageSection.razor.rz.scp.css */
/* ==============================================
   PAGE SECTION COMPONENT STYLES
   ============================================== */

.page-section[b-ea0v7knbp9] {
    padding: 5rem 0;
    position: relative;
}

.page-section.section-hero[b-ea0v7knbp9] {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.page-section.section-dark[b-ea0v7knbp9] {
    background: #1f2937;
    color: white;
}

.page-section.section-light[b-ea0v7knbp9] {
    background: #f9fafb;
}

.section-label[b-ea0v7knbp9] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-label-line[b-ea0v7knbp9] {
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, #4f46e5, #60a5fa);
}

.section-label-text[b-ea0v7knbp9] {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4f46e5;
}

.section-dark .section-label-text[b-ea0v7knbp9] {
    color: #60a5fa;
}

.section-title[b-ea0v7knbp9] {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2937;
    letter-spacing: -0.025em;
}

.section-dark .section-title[b-ea0v7knbp9] {
    color: white;
}

.section-subtitle[b-ea0v7knbp9] {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 800px;
}

.section-dark .section-subtitle[b-ea0v7knbp9] {
    color: #d1d5db;
}

.section-content[b-ea0v7knbp9] {
    margin-top: 3rem;
}

/* Hero section specific styles */
.hero-title[b-ea0v7knbp9] {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
    letter-spacing: -0.03em;
}

.hero-subtitle[b-ea0v7knbp9] {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-cta[b-ea0v7knbp9] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
}

.hero-cta:hover[b-ea0v7knbp9] {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .page-section[b-ea0v7knbp9] {
        padding: 3rem 0;
    }

    .page-section.section-hero[b-ea0v7knbp9] {
        padding: 5rem 0 3rem;
    }

    .section-title[b-ea0v7knbp9] {
        font-size: 2rem;
    }

    .hero-title[b-ea0v7knbp9] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-ea0v7knbp9] {
        font-size: 1.125rem;
    }

    .section-subtitle[b-ea0v7knbp9] {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title[b-ea0v7knbp9] {
        font-size: 2rem;
    }

    .section-title[b-ea0v7knbp9] {
        font-size: 1.75rem;
    }

    .hero-subtitle[b-ea0v7knbp9] {
        font-size: 1rem;
    }
}
