/* /Components/BulkAssignKitModal.razor.rz.scp.css */
/* Bulk Assign Kit Modal Styling */

/* Modal step transitions */
.modal-body[b-vh4g33ytfn] {
    min-height: 400px;
}

/* Progress animation */
.progress[b-vh4g33ytfn] {
    height: 30px;
    font-size: 1rem;
    font-weight: 600;
}

/* Participant table container */
.participant-table-container[b-vh4g33ytfn] {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
}

/* Summary card styling */
.summary-card[b-vh4g33ytfn] {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Icon spinning animation for processing */
@keyframes spin-b-vh4g33ytfn {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fa-spin[b-vh4g33ytfn] {
    animation: spin-b-vh4g33ytfn 1s linear infinite;
}

/* Alert styling for better visibility */
.alert[b-vh4g33ytfn] {
    border-left: 4px solid currentColor;
}

/* Tracking number code styling */
code[b-vh4g33ytfn] {
    background-color: var(--bs-gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-body[b-vh4g33ytfn] {
        min-height: 300px;
    }
    
    .participant-table-container[b-vh4g33ytfn] {
        max-height: 200px;
    }
}
/* /Components/OrderBuilder.razor.rz.scp.css */
/* OrderBuilder Responsive Styles */
/* Only essential CSS that Blazorise/Bootstrap cannot handle */

/* Horizontal scroll container for order items table on mobile */
.order-items-section[b-5ycvsw3q45] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Mobile: smaller font size for better readability */
@media (max-width: 767px) {
    .order-items-section table[b-5ycvsw3q45] {
        font-size: 0.875rem;
    }
    
    .order-items-section th[b-5ycvsw3q45],
    .order-items-section td[b-5ycvsw3q45] {
        padding: 0.5rem 0.25rem;
    }
}
/* /Components/OrdersList.razor.rz.scp.css */
/* OrdersList Responsive Styles */
/* Only essential CSS that Blazorise/Bootstrap cannot handle */

/* Horizontal scroll container for tables on mobile */
.orders-table-container[b-blhqdo8b7n] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Mobile: reduce table cell minimum width and make first column sticky */
@media (max-width: 767px) {
    .orders-table-container table td[b-blhqdo8b7n],
    .orders-table-container table th[b-blhqdo8b7n] {
        min-width: 100px;
    }
    
    /* Sticky first column during horizontal scroll */
    .orders-table-container table td:first-child[b-blhqdo8b7n],
    .orders-table-container table th:first-child[b-blhqdo8b7n] {
        position: sticky;
        left: 0;
        background-color: white;
        z-index: 10;
    }
}

/* Prevent badges from wrapping */
.badge[b-blhqdo8b7n] {
    white-space: nowrap;
}
/* /Components/ParticipantPicker.razor.rz.scp.css */
/* ParticipantPicker Component Styles */

.participant-picker-container[b-byy6vwj5so] {
    position: relative;
}

.participant-picker-results[b-byy6vwj5so] {
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-top: 0.25rem;
}

.participant-picker-item[b-byy6vwj5so] {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.15s ease-in-out;
}

.participant-picker-item:last-child[b-byy6vwj5so] {
    border-bottom: none;
}

.participant-picker-item:hover[b-byy6vwj5so] {
    background-color: #f8f9fa;
}

.participant-picker-item.participant-picker-empty[b-byy6vwj5so] {
    cursor: default;
    color: #6c757d;
    font-style: italic;
}

.participant-picker-item.participant-picker-empty:hover[b-byy6vwj5so] {
    background-color: white;
}

.participant-name[b-byy6vwj5so] {
    font-weight: 500;
    color: #212529;
    margin-bottom: 0.25rem;
}

.participant-email[b-byy6vwj5so] {
    font-size: 0.875rem;
    color: #6c757d;
}
/* /Components/QRScannerComponent.razor.rz.scp.css */
.qr-scanner-wrapper[b-5mmatoppuj] {
    max-width: 500px;
}

.qr-reader[b-5mmatoppuj] {
    border: 2px solid #dee2e6;
    border-radius: 0.25rem;
    overflow: hidden;
}

#reader[b-5mmatoppuj] {
    width: 100%;
}

#reader video[b-5mmatoppuj] {
    width: 100%;
    display: block;
}
/* /Pages/Admin/PendingOrders.razor.rz.scp.css */
.orders-table-container[b-ev8t6ld82r] {
    overflow-x: auto;
}

/* Ensure priority badges with icons display inline */
.priority-badge[b-ev8t6ld82r] {
    white-space: nowrap;
}

/* Mobile responsiveness improvements */
@media (max-width: 767px) {
    .orders-table-container[b-ev8t6ld82r] {
        font-size: 0.875rem;
    }
}

/* Highlight urgent deliveries */
.urgent-delivery[b-ev8t6ld82r] {
    animation: pulse-red-b-ev8t6ld82r 2s ease-in-out infinite;
}

@keyframes pulse-red-b-ev8t6ld82r {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}
/* /Pages/Index.razor.rz.scp.css */
.dashboard-summary-card[b-flzbxyjdmu] {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 320px;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    margin-bottom: 16px;
    background: #fff;
}
.dashboard-action-card[b-flzbxyjdmu] {
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    background: #fff;
    margin-bottom: 16px;
}
.dashboard-action-btn[b-flzbxyjdmu] {
    border: 1px solid #ececec;
    border-radius: 8px;
    font-weight: 500;
    color: #222;
    background: #f9fafb;
    transition: background 0.15s;
}
.dashboard-action-btn:hover[b-flzbxyjdmu] {
    background: #e8f0fe;
    color: #2563eb;
}
.dashboard-activity-list[b-flzbxyjdmu] {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dashboard-activity-list li[b-flzbxyjdmu] {
    position: relative;
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 15px;
    cursor: pointer;
}
.dashboard-activity-list li:last-child[b-flzbxyjdmu] {
    border-bottom: none;
}
.dashboard-activity-dot[b-flzbxyjdmu] {
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.dashboard-activity-title[b-flzbxyjdmu] {
    font-weight: 600;
    margin-right: 8px;
}
.dashboard-activity-desc[b-flzbxyjdmu] {
    display: block;
    color: #888;
    font-size: 13px;
    margin-top: 2px;
}
.dashboard-activity-date[b-flzbxyjdmu] {
    display: block;
    color: #bbb;
    font-size: 12px;
    margin-top: 2px;
}
.org-list[b-flzbxyjdmu] {
    margin-bottom: 24px;
}
.org-link[b-flzbxyjdmu] {
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}
.org-link:hover[b-flzbxyjdmu] {
    text-decoration: underline;
    color: #1746a2;
}
.activity-link[b-flzbxyjdmu] {
    text-align: right;
    margin-top: 12px;
}
.view-all-link[b-flzbxyjdmu] {
    font-weight: 600;
    color: #222;
    text-decoration: none;
}
.view-all-link:hover[b-flzbxyjdmu] {
    color: #2563eb;
    text-decoration: underline;
}
/* /Pages/Organizations/OrganizationHome.razor.rz.scp.css */
.stat-card[b-ki7ikzr2e0] {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.stat-card:hover[b-ki7ikzr2e0] {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.clickable-card[b-ki7ikzr2e0] {
    cursor: pointer !important;
}

.clickable-card:hover[b-ki7ikzr2e0] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

.clickable-card:active[b-ki7ikzr2e0] {
    transform: translateY(-2px);
}

.clickable-card *[b-ki7ikzr2e0] {
    cursor: pointer !important;
}

.bg-gradient-primary[b-ki7ikzr2e0] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.border-start-primary[b-ki7ikzr2e0] {
    border-left: 4px solid var(--bs-primary) !important;
}

.border-start-success[b-ki7ikzr2e0] {
    border-left: 4px solid var(--bs-success) !important;
}

.border-start-warning[b-ki7ikzr2e0] {
    border-left: 4px solid var(--bs-warning) !important;
}

.border-start-info[b-ki7ikzr2e0] {
    border-left: 4px solid var(--bs-info) !important;
}

/* Mobile/Desktop Layout Toggle */
.desktop-view[b-ki7ikzr2e0] {
    display: block;
}

.mobile-view[b-ki7ikzr2e0] {
    display: none;
}

@media (max-width: 768px) {
    .desktop-view[b-ki7ikzr2e0] {
        display: none;
    }

    .mobile-view[b-ki7ikzr2e0] {
        display: block;
    }
}

/* Mobile Accordion Styling */
.accordion-button-custom[b-ki7ikzr2e0] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    border: none;
    padding: 1rem;
    text-align: left;
    font-weight: 500;
    color: inherit;
}

.accordion-button-custom:hover[b-ki7ikzr2e0] {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Hide default collapse header toggle icon */
[b-ki7ikzr2e0] .collapse-header .collapse-header-toggle {
    display: none;
}

[b-ki7ikzr2e0] .collapse {
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.375rem;
    background-color: white;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

[b-ki7ikzr2e0] .collapse-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    background-color: #f8f9fa;
    padding: 0 !important;
}

[b-ki7ikzr2e0] .collapse-body {
    padding: 1rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .accordion-button-custom[b-ki7ikzr2e0] {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    [b-ki7ikzr2e0] .collapse-body {
        padding: 0.75rem;
    }
}
/* /Pages/Profile.razor.rz.scp.css */
/* Profile Page Styles */

/* Smooth transitions for cards */
[b-xd30qexrrp] .card {
    transition: all 0.3s ease;
}

/* Profile info cards hover effect */
[b-xd30qexrrp] .card-body:hover {
    transform: translateY(-2px);
}

/* Field labels styling */
[b-xd30qexrrp] .field-label {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Required asterisk */
[b-xd30qexrrp] .field-label span[style*="mutation-red"] {
    margin-left: 2px;
}

/* Button group spacing */
[b-xd30qexrrp] .btn-group {
    gap: 0.5rem;
}

/* Loading state */
[b-xd30qexrrp] .spinner-border {
    border-color: #1A2D3B;
    border-right-color: transparent;
}

/* Alert styling */
[b-xd30qexrrp] .alert {
    border-left: 4px solid;
    border-radius: 4px;
}

/* Card shadows on hover */
[b-xd30qexrrp] .card.shadow-lg:hover {
    box-shadow: 0 1rem 3rem rgba(26, 45, 59, 0.175) !important;
}

/* Profile header icon */
[b-xd30qexrrp] .card-header .icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Input focus states */
[b-xd30qexrrp] .form-control:focus {
    border-color: #16a5a3;
    box-shadow: 0 0 0 0.2rem rgba(22, 165, 163, 0.25);
}

/* Password field indicator */
[b-xd30qexrrp] input[type="password"] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.1em;
}

/* Info card styling */
[b-xd30qexrrp] .card[style*="discovery-teal"] {
    border-radius: 8px;
}

/* Responsive text sizing */
@media (max-width: 768px) {
    [b-xd30qexrrp] .card-title {
        font-size: 1.25rem;
    }
    
    [b-xd30qexrrp] .card-header .icon {
        width: 2rem;
        height: 2rem;
    }
}

/* Button loading state */
[b-xd30qexrrp] .btn.loading {
    position: relative;
    pointer-events: none;
}

[b-xd30qexrrp] .btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner-b-xd30qexrrp 0.6s linear infinite;
}

@keyframes spinner-b-xd30qexrrp {
    to {
        transform: rotate(360deg);
    }
}

/* Divider styling */
[b-xd30qexrrp] .divider {
    margin: 1.5rem 0;
    opacity: 0.6;
}

/* Field help text */
[b-xd30qexrrp] .field-help {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Display name preview in edit mode */
[b-xd30qexrrp] .display-name-preview {
    background-color: #f6f6f4;
    border-left: 3px solid #16a5a3;
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}
/* /Pages/TestTrackingNumbers.razor.rz.scp.css */
/* Screen display styles */
.print-container[b-2zb1wteuvd] {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
}

.label-grid[b-2zb1wteuvd] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.label[b-2zb1wteuvd] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 0.5rem;
    width: 384px; /* 4 inches at 96 DPI */
    height: 192px; /* 2 inches at 96 DPI */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.qr-section[b-2zb1wteuvd] {
    flex-shrink: 0;
}

.qr-code[b-2zb1wteuvd] {
    width: 160px;
    height: 160px;
    display: block;
}

.label-text[b-2zb1wteuvd] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #495057;
    text-align: center;
}
/* /Pages/WarehouseLabelPrinting.razor.rz.scp.css */
/* Screen display styles */
.print-container[b-93n5zgi4kn] {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
}

.label-grid[b-93n5zgi4kn] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.label[b-93n5zgi4kn] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 0.4rem 0.6rem;
    width: 384px; /* 4 inches at 96 DPI */
    height: 192px; /* 2 inches at 96 DPI */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.label-header[b-93n5zgi4kn] {
    border-bottom: 2px solid #003d5c;
    padding-bottom: 0.2rem;
    margin-bottom: 0.3rem;
}

.brand-text[b-93n5zgi4kn] {
    font-size: 0.9rem;
    font-weight: 700;
    color: #003d5c;
    text-align: center;
    letter-spacing: 0.05em;
}

.label-content[b-93n5zgi4kn] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.qr-section[b-93n5zgi4kn] {
    flex-shrink: 0;
}

.qr-code[b-93n5zgi4kn] {
    width: 140px;
    height: 140px;
    display: block;
}

.info-section[b-93n5zgi4kn] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: visible;
}

.kit-code[b-93n5zgi4kn] {
    font-family: 'Courier New', monospace;
    font-size: 2.25rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    word-break: keep-all;
    white-space: nowrap;
}

.kit-info[b-93n5zgi4kn] {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.4;
}

.kit-name[b-93n5zgi4kn] {
    font-weight: 600;
    margin-bottom: 0.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.kit-sku[b-93n5zgi4kn] {
    color: #6c757d;
    word-wrap: break-word;
    overflow-wrap: break-word;
}




/* /Shared/Components/Person.razor.rz.scp.css */
/* /Shared/Components/Persona.razor.rz.scp.css */
/* Root container */

.persona[b-d6kjo661ts] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.75rem;
}

.persona-clickable[b-d6kjo661ts] {
    cursor: pointer;
}

.persona-clickable:focus[b-d6kjo661ts] {
    outline: 2px solid var(--b-theme-primary, #5c7cfa);
    outline-offset: 2px;
}

.persona-avatar[b-d6kjo661ts] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: var(--persona-avatar-size);
    height: var(--persona-avatar-size);
    border-radius: 50%;
    overflow: hidden;
    background: var(--persona-initials-bg, #e9ecef);
}

.persona-avatar-img[b-d6kjo661ts] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 100%;
}

.persona-initials[b-d6kjo661ts] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dbeafe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    user-select: none;
    transition: background 0.2s;
    position: absolute;
    top: 0;
    left: 0;
}

/* Optional: size variants */
.persona-xsmall .persona-initials[b-d6kjo661ts] { width: 24px; height: 24px; font-size: 0.85rem; }
.persona-small  .persona-initials[b-d6kjo661ts] { width: 32px; height: 32px; font-size: 1rem; }
.persona-medium .persona-initials[b-d6kjo661ts] { width: 40px; height: 40px; font-size: 1.1rem; }
.persona-large  .persona-initials[b-d6kjo661ts] { width: 56px; height: 56px; font-size: 1.4rem; }
.persona-xlarge .persona-initials[b-d6kjo661ts] { width: 72px; height: 72px; font-size: 1.8rem; }

.persona-presence[b-d6kjo661ts] {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: var(--persona-presence-size);
    height: var(--persona-presence-size);
    border-radius: 50%;
    border: 2px solid var(--b-body-bg, #fff);
    z-index: 1;
}

.presence-online[b-d6kjo661ts] {
    background: #28a745;
}

.presence-busy[b-d6kjo661ts] {
    background: #dc3545;
}

.presence-away[b-d6kjo661ts] {
    background: #ffc107;
}

.presence-dnd[b-d6kjo661ts] {
    background: #b00020;
}

.presence-offline[b-d6kjo661ts] {
    background: #9aa0a6;
}

.persona-body[b-d6kjo661ts] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.persona-primary[b-d6kjo661ts] {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.persona-secondary[b-d6kjo661ts],
.persona-tertiary[b-d6kjo661ts] {
    color: var(--b-text-muted, #6c757d);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.persona-actions[b-d6kjo661ts] {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.persona-xsmall[b-d6kjo661ts] {
    --persona-avatar-size: 24px;
    --persona-presence-size: 10px;
}

.persona-small[b-d6kjo661ts] {
    --persona-avatar-size: 32px;
    --persona-presence-size: 12px;
}

.persona-medium[b-d6kjo661ts] {
    --persona-avatar-size: 40px;
    --persona-presence-size: 12px;
}

.persona-large[b-d6kjo661ts] {
    --persona-avatar-size: 56px;
    --persona-presence-size: 14px;
}

.persona-xlarge[b-d6kjo661ts] {
    --persona-avatar-size: 72px;
    --persona-presence-size: 16px;
}

.persona-xsmall .persona-primary[b-d6kjo661ts] {
    font-size: .80rem;
}

.persona-xsmall .persona-secondary[b-d6kjo661ts],
.persona-xsmall .persona-tertiary[b-d6kjo661ts] {
    font-size: .72rem;
}

.persona-small .persona-primary[b-d6kjo661ts] {
    font-size: .90rem;
}

.persona-small .persona-secondary[b-d6kjo661ts],
.persona-small .persona-tertiary[b-d6kjo661ts] {
    font-size: .80rem;
}

.persona-medium .persona-primary[b-d6kjo661ts] {
    font-size: 1rem;
}

.persona-medium .persona-secondary[b-d6kjo661ts],
.persona-medium .persona-tertiary[b-d6kjo661ts] {
    font-size: .88rem;
}

.persona-large .persona-primary[b-d6kjo661ts] {
    font-size: 1.08rem;
}

.persona-large .persona-secondary[b-d6kjo661ts],
.persona-large .persona-tertiary[b-d6kjo661ts] {
    font-size: .94rem;
}

.persona-xlarge .persona-primary[b-d6kjo661ts] {
    font-size: 1.2rem;
}

.persona-xlarge .persona-secondary[b-d6kjo661ts],
.persona-xlarge .persona-tertiary[b-d6kjo661ts] {
    font-size: 1rem;
}
/* /Shared/LoginDisplay.razor.rz.scp.css */
/* Target Blazorise Div with inline-flex for the display name */
[b-umr7x3wm82] .d-inline-flex {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    max-width: 150px !important;
}

/* Additional targeting for text truncation */
[b-umr7x3wm82] .text-truncate,
[b-umr7x3wm82] [style*="text-overflow: ellipsis"] {
    display: inline-block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* Force no wrapping on all dropdown toggle variations */
[b-umr7x3wm82] .bar-dropdown-toggle,
[b-umr7x3wm82] .dropdown-toggle,
[b-umr7x3wm82] button.dropdown-toggle,
[b-umr7x3wm82] a.dropdown-toggle,
[b-umr7x3wm82] .b-bar-dropdown-toggle,
[b-umr7x3wm82] .nav-link.dropdown-toggle {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* Prevent wrapping in the bar item itself */
[b-umr7x3wm82] .bar-item {
    white-space: nowrap !important;
}

/* Additional targeting for nested elements */
[b-umr7x3wm82] .bar-dropdown button,
[b-umr7x3wm82] .bar-dropdown a {
    white-space: nowrap !important;
}
/* /Shared/MainLayout.razor.rz.scp.css */
/* Mobile-specific styles */
@media (max-width: 768px) {
    /* Hide sidebar by default on mobile */
    [b-vn5r4ng6u7] .layout-sider {
        position: fixed;
        z-index: 1050;
        height: 100vh;
        top: 0;
        left: 0;
        width: 250px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    }
    
    /* Show sidebar when visible */
    [b-vn5r4ng6u7] .layout-sider.visible {
        transform: translateX(0);
    }
    
    /* Backdrop overlay */
    [b-vn5r4ng6u7] .layout-sider.visible::after {
        content: '';
        position: fixed;
        top: 0;
        left: 250px;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn-b-vn5r4ng6u7 0.3s ease-in-out;
    }
    
    [b-vn5r4ng6u7] .layout-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1040;
        background-color: #212529;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    [b-vn5r4ng6u7] .layout-content {
        margin-left: 0 !important;
        padding-top: 70px !important;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    [b-vn5r4ng6u7] .layout-sider {
        position: relative;
        transform: none;
    }
    
    [b-vn5r4ng6u7] .layout-content {
        margin-left: 0;
        padding-top: 0 !important;
    }
    
    [b-vn5r4ng6u7] .layout-header {
        display: none !important;
    }
}

@keyframes fadeIn-b-vn5r4ng6u7 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hamburger button styling */
[b-vn5r4ng6u7] .btn-dark {
    border: none;
    background: transparent !important;
}

[b-vn5r4ng6u7] .btn-dark:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

[b-vn5r4ng6u7] .btn-dark:focus {
    box-shadow: none !important;
}
/* /Shared/NavMenu.razor.rz.scp.css */
/* Smooth transitions for nav menu */
[b-jk2iuhl8c6] .b-bar {
    height: 100%;
}

[b-jk2iuhl8c6] .b-bar-vertical {
    transition: all 0.3s ease-in-out;
}

[b-jk2iuhl8c6] .b-bar-item {
    transition: background-color 0.2s ease;
}

[b-jk2iuhl8c6] .b-bar-link {
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 0.25rem 0.5rem;
    padding: 0.75rem 1rem;
}

[b-jk2iuhl8c6] .b-bar-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

[b-jk2iuhl8c6] .b-bar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    [b-jk2iuhl8c6] .b-bar-brand {
        padding: 1rem;
    }
    
    [b-jk2iuhl8c6] .b-bar-menu {
        padding-bottom: 1rem;
    }
    
    [b-jk2iuhl8c6] .b-bar-link {
        margin: 0.125rem 0.5rem;
        padding: 0.625rem 1rem;
    }
}
