@import '_content/BlazoringComponents/BlazoringComponents.pcrev4ucud.bundle.scp.css';

/* /Pages/DashBoard/Index.razor.rz.scp.css */
/* Dashboard (Index) scoped styles */

.dashboard-page[b-4ocau0fhci] {
    --dash-surface: rgba(255, 255, 255, 0.85);
    --dash-border: rgba(0, 0, 0, 0.06);
    --dash-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dashboard-hero[b-4ocau0fhci] {
    background: radial-gradient(1200px 500px at 10% 0%, rgba(74, 144, 226, 0.18) 0%, rgba(74, 144, 226, 0.06) 35%, transparent 70%),
        radial-gradient(900px 420px at 90% 20%, rgba(53, 122, 189, 0.16) 0%, rgba(53, 122, 189, 0.05) 35%, transparent 70%);
    border: 1px solid var(--dash-border);
    border-radius: 18px;
    padding: 1.25rem 1.25rem;
    box-shadow: var(--dash-shadow);
}

.dashboard-title[b-4ocau0fhci] {
    letter-spacing: -0.02em;
}

.dashboard-subtitle[b-4ocau0fhci] {
    margin-bottom: 0;
}

.dashboard-toolbar[b-4ocau0fhci] {
    border: 1px solid var(--dash-border);
    border-radius: 18px;
    background: var(--dash-surface);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.dashboard-toolbar .btn[b-4ocau0fhci] {
    border-radius: 12px;
}

.dashboard-toolbar .btn .material-icons[b-4ocau0fhci] {
    line-height: 1;
}

.dashboard-card[b-4ocau0fhci] {
    border-radius: 18px;
}

.dashboard-card .card-body[b-4ocau0fhci] {
    padding: 1.35rem 1.35rem;
}

.dashboard-card .icon-box[b-4ocau0fhci] {
    min-width: 60px;
    min-height: 60px;
}

.dashboard-card p[b-4ocau0fhci] {
    letter-spacing: 0.04em;
}

@media (min-width: 992px) {
    .dashboard-hero[b-4ocau0fhci] {
        padding: 1.6rem 1.75rem;
    }

    .dashboard-card .card-body[b-4ocau0fhci] {
        padding: 1.6rem 1.6rem;
    }
}
/* /Pages/Tickets/Assign.razor.rz.scp.css */
.assign-users-container[b-ewnqmu8l2y] {
    padding: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.assign-header h5[b-ewnqmu8l2y] {
    display: flex;
    align-items: center;
    color: #2c3e50;
    font-weight: 600;
}

.search-section[b-ewnqmu8l2y] {
    position: relative;
}

.search-section input[b-ewnqmu8l2y] {
    padding-left: 45px !important;
}

.assigned-users-section[b-ewnqmu8l2y],
.available-users-section[b-ewnqmu8l2y] {
    margin-bottom: 1.5rem;
}

.user-badge[b-ewnqmu8l2y] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.user-badge:hover[b-ewnqmu8l2y] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.user-avatar[b-ewnqmu8l2y] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.user-name[b-ewnqmu8l2y] {
    font-weight: 500;
}

.btn-remove[b-ewnqmu8l2y] {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-remove:hover[b-ewnqmu8l2y] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

.btn-remove i[b-ewnqmu8l2y] {
    font-size: 1rem;
    font-weight: bold;
}

.users-grid[b-ewnqmu8l2y] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
}

.user-card[b-ewnqmu8l2y] {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.user-card:hover[b-ewnqmu8l2y] {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.user-card.selected[b-ewnqmu8l2y] {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.user-card-content[b-ewnqmu8l2y] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-large[b-ewnqmu8l2y] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.user-info[b-ewnqmu8l2y] {
    flex: 1;
    min-width: 0;
}

.user-name-full[b-ewnqmu8l2y] {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email[b-ewnqmu8l2y] {
    font-size: 0.8rem;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.check-icon[b-ewnqmu8l2y] {
    color: #667eea;
    display: flex;
    align-items: center;
}

.check-icon .material-icons[b-ewnqmu8l2y] {
    font-size: 24px;
}

.assign-footer[b-ewnqmu8l2y] {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

/* Alert per stato "nessun utente selezionato" */
.alert-info[b-ewnqmu8l2y] {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #2196f3;
    border-radius: 12px;
    color: #0d47a1;
    padding: 1rem;
}

.alert-info .bi-info-circle-fill[b-ewnqmu8l2y] {
    font-size: 1.5rem;
    color: #2196f3;
}

.alert-info strong[b-ewnqmu8l2y] {
    color: #1565c0;
}

.alert-info small[b-ewnqmu8l2y] {
    color: #424242;
    font-size: 0.875rem;
}

/* ? NUOVO: Badge Workload (carico di lavoro utenti) */
.workload-badge[b-ewnqmu8l2y] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.workload-free[b-ewnqmu8l2y] {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #28a745;
}

.workload-low[b-ewnqmu8l2y] {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #28a745;
}

.workload-medium[b-ewnqmu8l2y] {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border: 1px solid #ffc107;
    animation: pulse-yellow-b-ewnqmu8l2y 2s ease-in-out infinite;
}

.workload-high[b-ewnqmu8l2y] {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #dc3545;
    animation: pulse-red-b-ewnqmu8l2y 2s ease-in-out infinite;
}

@keyframes pulse-yellow-b-ewnqmu8l2y {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 193, 7, 0);
    }
}

@keyframes pulse-red-b-ewnqmu8l2y {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(220, 53, 69, 0);
    }
}

/* ? NUOVO: Link Scheduler (pulsante piccolo) */
.btn-scheduler-link[b-ewnqmu8l2y] {
    background: none;
    border: 1px solid #667eea;
    color: #667eea;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-scheduler-link:hover[b-ewnqmu8l2y] {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

@media (max-width: 576px) {
    .users-grid[b-ewnqmu8l2y] {
        grid-template-columns: 1fr;
    }

    .assign-users-container[b-ewnqmu8l2y] {
        padding: 1rem;
    }
}
/* /Pages/Tickets/Details.razor.rz.scp.css */
/* ========================================
   TICKET DETAILS - ASSIGNED USERS BADGES
   ======================================== */

.assigned-users-badges[b-6kpu5vh297] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.user-badge[b-6kpu5vh297] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    position: relative;
}

.user-badge:hover[b-6kpu5vh297] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.user-avatar[b-6kpu5vh297] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.user-name[b-6kpu5vh297] {
    font-weight: 500;
    white-space: nowrap;
}

/* Indicatore stella per l'utente principale */
.badge-primary-indicator[b-6kpu5vh297] {
    margin-left: 0.25rem;
    font-size: 1rem;
    color: #ffd700; /* Oro */
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
    animation: sparkle-b-6kpu5vh297 2s ease-in-out infinite;
}

@keyframes sparkle-b-6kpu5vh297 {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive per mobile */
@media (max-width: 576px) {
    .user-badge[b-6kpu5vh297] {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .user-avatar[b-6kpu5vh297] {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .user-name[b-6kpu5vh297] {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Varianti di colore per diversificare gli utenti (opzionale) */
.user-badge:nth-child(1)[b-6kpu5vh297] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.user-badge:nth-child(2)[b-6kpu5vh297] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.user-badge:nth-child(3)[b-6kpu5vh297] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.user-badge:nth-child(4)[b-6kpu5vh297] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.user-badge:nth-child(5)[b-6kpu5vh297] {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.user-badge:nth-child(n+6)[b-6kpu5vh297] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
/* /Shared/Components/AGBreadCrumb.razor.rz.scp.css */
ul[b-hkxhyv8jcr] {
    margin: 0;
    padding: 0;
    list-style: none;
}
#breadcrumbs-one[b-hkxhyv8jcr] {
    background: #eee;
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #e5e5e5 #ccc;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,.2);
    overflow: hidden;
    width: 100%;
    margin-bottom: 5px;
}

    #breadcrumbs-one li[b-hkxhyv8jcr] {
        float: left;
    }

    #breadcrumbs-one div[b-hkxhyv8jcr],
    #breadcrumbs-one a[b-hkxhyv8jcr] {
        padding: .7em 1em .7em 2em;
        float: left;
        text-decoration: none;
        color: #444;
        position: relative;
        text-shadow: 0 1px 0 rgba(255,255,255,.5);
        background-color: #ddd;
        background-image: linear-gradient(to right, #f5f5f5, #ddd);
    }

    
    #breadcrumbs-one li:first-child a[b-hkxhyv8jcr] {
        padding-left: 1em;
        border-radius: 5px 0 0 5px;
    }

    #breadcrumbs-one a:hover[b-hkxhyv8jcr] {
        background: #fff;
    }

    #breadcrumbs-one div[b-hkxhyv8jcr]::after,
    #breadcrumbs-one div[b-hkxhyv8jcr]::before,
    #breadcrumbs-one a[b-hkxhyv8jcr]::after,
    #breadcrumbs-one a[b-hkxhyv8jcr]::before {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -1.5em;
        border-top: 1.5em solid transparent;
        border-bottom: 1.5em solid transparent;
        border-left: 1em solid;
        right: -1em;
    }

    #breadcrumbs-one div[b-hkxhyv8jcr]::after,
    #breadcrumbs-one a[b-hkxhyv8jcr]::after {
        z-index: 2;
        border-left-color: #ddd;
    }
    #breadcrumbs-one div[b-hkxhyv8jcr]::before,
    #breadcrumbs-one a[b-hkxhyv8jcr]::before {
        border-left-color: #ccc;
        right: -1.1em;
        z-index: 1;
    }

    #breadcrumbs-one a:hover[b-hkxhyv8jcr]::after {
        border-left-color: #fff;
    }

    #breadcrumbs-one .current[b-hkxhyv8jcr],
    #breadcrumbs-one .current:hover[b-hkxhyv8jcr] {
        font-weight: bold;
        background: none;
    }

    #breadcrumbs-one .current[b-hkxhyv8jcr]::after,
    #breadcrumbs-one .current[b-hkxhyv8jcr]::before {
        content: normal;
    }
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-674zyuawbf] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-674zyuawbf] {
    flex: 1;
}

.sidebar[b-674zyuawbf] {
    background-image: linear-gradient(180deg, #222e3c 0%, #222e3c 100%);
    /* background-image: url("../imgs/forex.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;*/
    /*background-color: #0e122e;*/
}


.logo[b-674zyuawbf]
{
    height: 50px;
    margin-right: auto;
}

.top-row[b-674zyuawbf] {
    background-color: #f7f7f7;/* aplus */
    /*background-color: #141c24; /*chronos*/
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-674zyuawbf]  a, .top-row[b-674zyuawbf]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-674zyuawbf]  a:hover, .top-row[b-674zyuawbf]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-674zyuawbf]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-674zyuawbf] {
        display: none;
    }
    .logo[b-674zyuawbf]
    {
        display: none;
    }
    .top-row.auth[b-674zyuawbf] {
        justify-content: space-between;
    }

    .top-row[b-674zyuawbf]  a, .top-row[b-674zyuawbf]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-674zyuawbf] {
        flex-direction: row;
    }

    .sidebar[b-674zyuawbf] {
        width: 200px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-674zyuawbf] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-674zyuawbf]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-674zyuawbf], article[b-674zyuawbf] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/MainLayoutCustomer.razor.rz.scp.css */
.page[b-2ygsofxn1i] {
    position: relative;
    display: flex;
    flex-direction: column;
    
}

.main[b-2ygsofxn1i] {
    flex: 1;
}

.sidebarMain[b-2ygsofxn1i] {
    background-image: linear-gradient(180deg, #222e3c 0%, #222e3c 100%);
}

.top-row[b-2ygsofxn1i] {
    border-bottom: 1px solid #d6d5d5;
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
    background: #f7f7f7;
    background-position-x: 1.5rem;
}

   
    .top-row[b-2ygsofxn1i]  a, .top-row .btn-link[b-2ygsofxn1i] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-2ygsofxn1i] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-2ygsofxn1i] {
        display: none;
    }

    .top-row.auth[b-2ygsofxn1i] {
        justify-content: space-between;
    }

    .top-row a[b-2ygsofxn1i], .top-row .btn-link[b-2ygsofxn1i] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-2ygsofxn1i] {
        flex-direction: row;
    }

    .sidebarMain[b-2ygsofxn1i] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-2ygsofxn1i] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-2ygsofxn1i] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
/* NavMenu scoped styles */

/* Modern Top Bar - DARK */
.modern-topbar[b-dvh4t14lw5] {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    height: 60px;
    padding: 0;
}

.modern-topbar[b-dvh4t14lw5]  .navbar-brand {
    font-weight: 600;
    color: white;
    transition: opacity 0.2s;
}

.modern-topbar[b-dvh4t14lw5]  .navbar-brand:hover {
    opacity: 0.9;
}

.brand-text[b-dvh4t14lw5] {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: white;
}

.modern-topbar[b-dvh4t14lw5]  .navbar-toggler {
    color: white;
    padding: 8px;
}

.modern-topbar[b-dvh4t14lw5]  .navbar-toggler .material-icons {
    font-size: 28px;
    color: white;
}

/* Modern Navigation - DARK */
.modern-nav[b-dvh4t14lw5] {
    background-color: #3a3a3a;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.4);
    height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 16px 0;
    color: #e0e0e0;
}

/* Navigation Sections */
.nav-section[b-dvh4t14lw5] {
    margin-bottom: 8px;
    border-bottom: 1px solid #4a4a4a;
    padding-bottom: 8px;
}

.nav-section:last-child[b-dvh4t14lw5] {
    border-bottom: none;
}

/* Navigation Links */
.modern-nav[b-dvh4t14lw5]  a.nav-link,
.modern-nav[b-dvh4t14lw5]  .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #e0e0e0 !important;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 8px;
    margin: 4px 12px;
    font-weight: 500;
    position: relative;
}

.modern-nav[b-dvh4t14lw5]  a.nav-link:hover,
.modern-nav[b-dvh4t14lw5]  .nav-link:hover {
    background-color: #4a4a4a;
    color: #4A90E2 !important;
    transform: translateX(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modern-nav[b-dvh4t14lw5]  a.nav-link.active,
.modern-nav[b-dvh4t14lw5]  .nav-link.active,
.modern-nav[b-dvh4t14lw5]  a.nav-link[aria-current="page"] {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(53, 122, 189, 0.2) 100%);
    color: #4A90E2 !important;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.3);
    border-left: 4px solid #4A90E2;
    padding-left: 16px;
}

/* Icons */
.modern-nav[b-dvh4t14lw5]  .nav-icon {
    font-size: 24px;
    margin-right: 12px;
    min-width: 24px;
    color: #4A90E2 !important;
}

.modern-nav[b-dvh4t14lw5]  .nav-icon-small {
    font-size: 20px;
    margin-right: 10px;
    min-width: 20px;
    color: #4A90E2 !important;
}

.modern-nav[b-dvh4t14lw5]  .nav-text {
    flex: 1;
    font-size: 0.95rem;
    color: inherit !important;
}

.modern-nav[b-dvh4t14lw5]  .expand-icon,
.modern-nav[b-dvh4t14lw5]  .expand-icon-small {
    font-size: 20px;
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #9e9e9e !important;
}

.modern-nav[b-dvh4t14lw5]  .expand-icon-small {
    font-size: 18px;
}

/* Submenu */
.nav-submenu[b-dvh4t14lw5] {
    animation: slideDown-b-dvh4t14lw5 0.3s ease-out;
    margin-left: 8px;
    margin-top: 4px;
}

.modern-nav[b-dvh4t14lw5]  a.submenu-link,
.modern-nav[b-dvh4t14lw5]  .submenu-link {
    padding: 10px 20px !important;
    margin: 2px 12px !important;
    font-size: 0.9rem;
    font-weight: 500 !important;
    color: #d0d0d0 !important;
}

.modern-nav[b-dvh4t14lw5]  .submenu-link .nav-icon {
    font-size: 20px;
    margin-right: 10px;
}

/* Sub-submenu */
.nav-submenu-2[b-dvh4t14lw5] {
    margin-left: 32px;
    animation: slideDown-b-dvh4t14lw5 0.2s ease-out;
}

.modern-nav[b-dvh4t14lw5]  a.submenu-link-2,
.modern-nav[b-dvh4t14lw5]  .submenu-link-2 {
    padding: 8px 16px !important;
    margin: 2px 8px !important;
    font-size: 0.875rem;
    font-weight: 500 !important;
    color: #d0d0d0 !important;
}

.modern-nav[b-dvh4t14lw5]  a.submenu-link-2:hover,
.modern-nav[b-dvh4t14lw5]  .submenu-link-2:hover {
    background-color: #4a4a4a !important;
    color: #4A90E2 !important;
}

/* AI Highlight */
.modern-nav[b-dvh4t14lw5]  .highlight-ai {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(53, 122, 189, 0.15) 100%);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.modern-nav[b-dvh4t14lw5]  .highlight-ai:hover {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.25) 0%, rgba(53, 122, 189, 0.25) 100%);
    border-color: #4A90E2;
}

.modern-nav[b-dvh4t14lw5]  .highlight-ai .badge {
    font-size: 0.7rem;
    padding: 2px 6px;
    background: rgba(74, 144, 226, 0.25) !important;
    border: 1px solid rgba(74, 144, 226, 0.35);
}

/* Animations */
@keyframes slideDown-b-dvh4t14lw5 {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        max-height: 1000px;
        transform: translateY(0);
    }
}

/* Scrollbar */
.modern-nav[b-dvh4t14lw5]::-webkit-scrollbar {
    width: 6px;
}

.modern-nav[b-dvh4t14lw5]::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.modern-nav[b-dvh4t14lw5]::-webkit-scrollbar-thumb {
    background: #4A90E2;
    border-radius: 10px;
}

.modern-nav[b-dvh4t14lw5]::-webkit-scrollbar-thumb:hover {
    background: #357ABD;
}

/* Mobile Responsive + Hide Toggle */
@media (min-width: 641px) {
    .modern-topbar[b-dvh4t14lw5]  .navbar-toggler {
        display: none;
    }

    .collapse[b-dvh4t14lw5] {
        display: block;
    }

    .nav-scrollable[b-dvh4t14lw5] {
        height: calc(100vh - 60px);
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .modern-topbar[b-dvh4t14lw5] {
        height: 56px;
    }

    .modern-nav[b-dvh4t14lw5] {
        height: calc(100vh - 56px);
    }

    .modern-nav[b-dvh4t14lw5]  a.nav-link,
    .modern-nav[b-dvh4t14lw5]  .nav-link {
        padding: 10px 16px;
    }

    .modern-nav[b-dvh4t14lw5]  .nav-icon {
        font-size: 22px;
    }

    .modern-nav[b-dvh4t14lw5]  .nav-text {
        font-size: 0.9rem;
    }
}

.nav-item[b-dvh4t14lw5] {
    position: relative;
}
/* /Shared/NavMenuClient.razor.rz.scp.css */
.navbar-toggler[b-19pmu8mig7] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-19pmu8mig7] {
    height: 3.5rem;
    background-color: darkblue;/* rgba(0,0,0,0.4);*/
}

.navbar-brand[b-19pmu8mig7] {
    font-size: 1.1rem;
}

.oi[b-19pmu8mig7] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-19pmu8mig7] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-19pmu8mig7] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-19pmu8mig7] {
    padding-bottom: 1rem;
}

.nav-item[b-19pmu8mig7]  a {
    color: white;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
}

    .nav-item[b-19pmu8mig7]  a.active {
        background-color: rgba(255,255,255,0.25);
        color: white;
    }

    .nav-item[b-19pmu8mig7]  a:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

.nav-item-2[b-19pmu8mig7]  a {
    color: white;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
}
.nav-submenu[b-19pmu8mig7] {
    background: $secondary;

}

.nav-submenu-2[b-19pmu8mig7] {
    background-image: linear-gradient(180deg, #222e3c 0%, #222e3c 100%);
}

@media (min-width: 641px) {
    .navbar-toggler[b-19pmu8mig7] {
        display: none;
    }

    .collapse[b-19pmu8mig7] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* /Shared/PrintLayout.razor.rz.scp.css */
.page[b-yjt8xiwhyi] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-yjt8xiwhyi] {
    flex: 1;
}

.sidebar[b-yjt8xiwhyi] {
    background-image: linear-gradient(180deg, #222e3c 0%, #222e3c 100%);
    /* background-image: url("../imgs/forex.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;*/
    /*background-color: #0e122e;*/
}


.logo[b-yjt8xiwhyi]
{
    width: 150px;
    margin-right: auto;
}

.top-row[b-yjt8xiwhyi] {
    /*background-color: #f7f7f7;*//* aplus */
    background-color: #141c24; /*chronos*/
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-yjt8xiwhyi]  a, .top-row[b-yjt8xiwhyi]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-yjt8xiwhyi]  a:hover, .top-row[b-yjt8xiwhyi]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-yjt8xiwhyi]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-yjt8xiwhyi] {
        display: none;
    }
    .logo[b-yjt8xiwhyi]
    {
        display: none;
    }
    .top-row.auth[b-yjt8xiwhyi] {
        justify-content: space-between;
    }

    .top-row[b-yjt8xiwhyi]  a, .top-row[b-yjt8xiwhyi]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-yjt8xiwhyi] {
        flex-direction: row;
    }

    .sidebar[b-yjt8xiwhyi] {
        width: 200px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-yjt8xiwhyi] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-yjt8xiwhyi]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-yjt8xiwhyi], article[b-yjt8xiwhyi] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
