/* /Components/Account/Pages/AccessDenied.razor.rz.scp.css */
/* Access Denied Page Styles */

.access-denied-container[b-09o3uu51wl] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d30 100%);
    padding: 2rem;
}

.access-denied-content[b-09o3uu51wl] {
    max-width: 600px;
    width: 100%;
    background: #252528;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.access-denied-icon[b-09o3uu51wl] {
    margin-bottom: 2rem;
    animation: pulse-b-09o3uu51wl 2s ease-in-out infinite;
}

@keyframes pulse-b-09o3uu51wl {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.access-denied-title[b-09o3uu51wl] {
    color: #ef4444;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.access-denied-subtitle[b-09o3uu51wl] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.access-denied-message[b-09o3uu51wl] {
    margin-bottom: 2rem;
}

.access-denied-message p[b-09o3uu51wl] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.access-denied-message .secondary-message[b-09o3uu51wl] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.user-info-box[b-09o3uu51wl] {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.user-info-icon[b-09o3uu51wl] {
    font-size: 3rem;
    color: #667eea;
    flex-shrink: 0;
}

.user-info-text[b-09o3uu51wl] {
    flex: 1;
}

.user-label[b-09o3uu51wl] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-name[b-09o3uu51wl] {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.user-roles[b-09o3uu51wl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.role-label[b-09o3uu51wl] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.role-badge[b-09o3uu51wl] {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.help-message[b-09o3uu51wl] {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.help-message.warning[b-09o3uu51wl] {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-left: 4px solid #f59e0b;
}

.help-message .bi[b-09o3uu51wl] {
    font-size: 1.25rem;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.help-message.warning .bi[b-09o3uu51wl] {
    color: #f59e0b;
}

.help-message span:last-child[b-09o3uu51wl] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.action-buttons[b-09o3uu51wl] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.access-denied-content .btn-primary[b-09o3uu51wl],
.access-denied-content .btn-secondary[b-09o3uu51wl] {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.access-denied-content .btn-primary[b-09o3uu51wl] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.access-denied-content .btn-primary:hover[b-09o3uu51wl] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.access-denied-content .btn-primary:active[b-09o3uu51wl] {
    transform: translateY(0);
}

.access-denied-content .btn-secondary[b-09o3uu51wl] {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.access-denied-content .btn-secondary:hover[b-09o3uu51wl] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.support-link[b-09o3uu51wl] {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-link p[b-09o3uu51wl] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.support-link a[b-09o3uu51wl] {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.support-link a:hover[b-09o3uu51wl] {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .access-denied-container[b-09o3uu51wl] {
        padding: 1rem;
    }

    .access-denied-content[b-09o3uu51wl] {
        padding: 2rem 1.5rem;
    }

    .access-denied-title[b-09o3uu51wl] {
        font-size: 2rem;
    }

    .action-buttons[b-09o3uu51wl] {
        flex-direction: column;
        width: 100%;
    }

    .access-denied-content .btn-primary[b-09o3uu51wl],
    .access-denied-content .btn-secondary[b-09o3uu51wl] {
        width: 100%;
        justify-content: center;
    }

    .user-info-box[b-09o3uu51wl] {
        flex-direction: column;
        text-align: center;
    }

    .user-info-text[b-09o3uu51wl] {
        text-align: center;
    }

    .user-roles[b-09o3uu51wl] {
        justify-content: center;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-oz6vteykbs] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #1a1a1a;
}

main[b-oz6vteykbs] {
    flex: 1;
    background: #1a1a1a;
}

.sidebar[b-oz6vteykbs] {
    background: #252528;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
}

.top-row[b-oz6vteykbs] {
    background: #2d2d30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    justify-content: flex-end;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

    .top-row .top-row-content[b-oz6vteykbs] {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .top-row .user-greeting[b-oz6vteykbs] {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        font-size: 14px;
    }

    .top-row[b-oz6vteykbs]  a, .top-row[b-oz6vteykbs]  .btn-link {
        white-space: nowrap;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        font-weight: 500;
        padding: 8px 16px;
        border-radius: 6px;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
    }

    .top-row[b-oz6vteykbs]  a:hover, .top-row[b-oz6vteykbs]  .btn-link:hover {
        text-decoration: none;
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        border-color: rgba(102, 126, 234, 0.2);
    }

    .top-row[b-oz6vteykbs]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-oz6vteykbs] {
        justify-content: space-between;
    }

    .top-row[b-oz6vteykbs]  a, .top-row[b-oz6vteykbs]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-oz6vteykbs] {
        flex-direction: row;
    }

    .sidebar[b-oz6vteykbs] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        transition: width 0.3s ease;
    }

    .sidebar:has(.nav-container.collapsed)[b-oz6vteykbs] {
        width: 50px;
    }

    .top-row[b-oz6vteykbs] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-oz6vteykbs]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-oz6vteykbs], article[b-oz6vteykbs] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-oz6vteykbs] {
    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-oz6vteykbs] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.logout-button[b-oz6vteykbs] {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

    .logout-button:hover[b-oz6vteykbs] {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        border-color: rgba(102, 126, 234, 0.2);
    }

    .logout-button:active[b-oz6vteykbs] {
        background: rgba(102, 126, 234, 0.15);
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Professional Navigation Styles */

.nav-container[b-h14chiwz1t] {
    transition: width 0.3s ease;
    width: 100%;
}

.nav-header[b-h14chiwz1t] {
    height: 70px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo[b-h14chiwz1t] {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.nav-logo .bi[b-h14chiwz1t] {
    font-size: 28px;
    width: auto;
    height: auto;
    margin: 0;
}

.nav-brand[b-h14chiwz1t] {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-toggler[b-h14chiwz1t] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem;
    transition: all 0.2s ease;
}

.navbar-toggler:hover[b-h14chiwz1t] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler:checked[b-h14chiwz1t] {
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-scrollable[b-h14chiwz1t] {
    display: none;
}

.nav-menu[b-h14chiwz1t] {
    padding: 16px 12px;
}

.nav-section[b-h14chiwz1t] {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.nav-category-header[b-h14chiwz1t] {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0 12px 8px 12px;
    margin-bottom: 4px;
}

.nav-item[b-h14chiwz1t] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0;
    margin-bottom: 2px;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    height: 44px;
    position: relative;
    overflow: visible;
}

.nav-item.nav-child[b-h14chiwz1t] {
    margin-left: 20px;
}

.nav-item[b-h14chiwz1t]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 2px 2px 0;
    transition: height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover[b-h14chiwz1t] {
    background-color: rgba(255, 255, 255, 0.06);
    color: white;
}

.nav-item:hover[b-h14chiwz1t]::before {
    height: 24px;
}

.nav-item.active[b-h14chiwz1t] {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.08) 100%);
    color: white;
    font-weight: 500;
}

.nav-item.active[b-h14chiwz1t]::before {
    height: 32px;
}

.nav-icon[b-h14chiwz1t] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin: 0 16px 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1;
    vertical-align: middle;
}

.nav-text[b-h14chiwz1t] {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    line-height: 20px;
    vertical-align: middle;
}

/* Override Bootstrap NavLink styles */
.nav-item[b-h14chiwz1t]  a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    padding: 0;
}

/* Ensure Bootstrap Icons align properly */
.nav-icon.bi[b-h14chiwz1t] {
    vertical-align: middle;
}

.nav-icon[b-h14chiwz1t]::before {
    vertical-align: middle;
}

.nav-item[b-h14chiwz1t]  a.active {
    color: inherit;
    background: none;
}

.nav-item[b-h14chiwz1t]  a:hover {
    color: inherit;
    background: none;
}

@media (min-width: 641px) {
    .navbar-toggler[b-h14chiwz1t] {
        display: none;
    }

    .nav-scrollable[b-h14chiwz1t] {
        display: block;
        height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-scrollable[b-h14chiwz1t]::-webkit-scrollbar {
        width: 6px;
    }

    .nav-scrollable[b-h14chiwz1t]::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }

    .nav-scrollable[b-h14chiwz1t]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
    }

    .nav-scrollable[b-h14chiwz1t]::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }
}

/* Collapsed Navigation State */
.nav-container.collapsed[b-h14chiwz1t] {
    width: 50px;
}

.nav-container.collapsed .nav-header[b-h14chiwz1t] {
    padding: 0;
    justify-content: center;
}

.nav-container.collapsed .nav-logo[b-h14chiwz1t] {
    justify-content: center;
    width: 100%;
}

.nav-container.collapsed .nav-text[b-h14chiwz1t] {
    display: none;
}

/* Collapsible section styles */
.nav-category-header.collapsible[b-h14chiwz1t] {
    user-select: none;
    transition: all 0.2s ease;
    padding: 15px 0 !important;
}

.nav-category-header.collapsible:hover[b-h14chiwz1t] {
    background: rgba(255, 255, 255, 0.03);
    padding-left: 8px !important;
    margin-left: -8px !important;
    border-radius: 6px;
}

.nav-category-header.collapsible .bi[b-h14chiwz1t] {
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.nav-category-header.collapsible:hover .bi[b-h14chiwz1t] {
    opacity: 1;
}

.nav-container.collapsed .nav-category-header[b-h14chiwz1t] {
    display: none;
}

.nav-container.collapsed .nav-icon[b-h14chiwz1t] {
    margin: 0;
}

.nav-container.collapsed .nav-item[b-h14chiwz1t] {
    justify-content: center;
    padding: 0;
}

.nav-container.collapsed .nav-menu[b-h14chiwz1t] {
    padding: 16px 8px;
}

/* Smooth transition for collapse/expand */
.nav-container[b-h14chiwz1t] {
    transition: width 0.3s ease;
}

.nav-text[b-h14chiwz1t],
.nav-category-header[b-h14chiwz1t] {
    transition: opacity 0.2s ease;
}

.navbar-toggler:checked ~ .nav-scrollable[b-h14chiwz1t] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-h14chiwz1t] {
        display: none;
    }

    .nav-scrollable[b-h14chiwz1t] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-n0thu0lmgg],
.components-reconnect-repeated-attempt-visible[b-n0thu0lmgg],
.components-reconnect-failed-visible[b-n0thu0lmgg],
.components-pause-visible[b-n0thu0lmgg],
.components-resume-failed-visible[b-n0thu0lmgg],
.components-rejoining-animation[b-n0thu0lmgg] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-n0thu0lmgg],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-n0thu0lmgg],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-n0thu0lmgg],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-n0thu0lmgg],
#components-reconnect-modal.components-reconnect-retrying[b-n0thu0lmgg],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-n0thu0lmgg],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-n0thu0lmgg],
#components-reconnect-modal.components-reconnect-failed[b-n0thu0lmgg],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-n0thu0lmgg] {
    display: block;
}


#components-reconnect-modal[b-n0thu0lmgg] {
    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-n0thu0lmgg 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-n0thu0lmgg 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-n0thu0lmgg 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-n0thu0lmgg]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-n0thu0lmgg 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-n0thu0lmgg {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-n0thu0lmgg {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-n0thu0lmgg {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-n0thu0lmgg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-n0thu0lmgg] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-n0thu0lmgg] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-n0thu0lmgg] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-n0thu0lmgg] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-n0thu0lmgg] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-n0thu0lmgg] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-n0thu0lmgg 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-n0thu0lmgg] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-n0thu0lmgg {
    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/ApiReference.razor.rz.scp.css */
/* Use ::deep to ensure styles penetrate shadow DOM and override global styles */

[b-1r8mgbkqgd] .api-reference-container {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

[b-1r8mgbkqgd] .api-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

[b-1r8mgbkqgd] .header-content h1 {
    margin: 0;
    font-size: 2rem;
    color: #2d3748 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-1r8mgbkqgd] .header-content h1 .bi {
    color: #667eea !important;
}

[b-1r8mgbkqgd] .header-content p {
    margin: 0.5rem 0 0 0;
    color: #718096 !important;
    font-size: 1rem;
}

[b-1r8mgbkqgd] .header-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #667eea;
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

[b-1r8mgbkqgd] .header-actions .btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

[b-1r8mgbkqgd] .api-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

[b-1r8mgbkqgd] .api-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

[b-1r8mgbkqgd] .api-section h2 {
    margin: 0 0 1rem 0;
    color: #2d3748 !important;
    font-size: 1.75rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

[b-1r8mgbkqgd] .api-section h3 {
    color: #2d3748 !important;
    margin: 1rem 0 0.5rem 0;
}

[b-1r8mgbkqgd] .api-section h4 {
    color: #2d3748 !important;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.125rem;
}

[b-1r8mgbkqgd] .section-description {
    color: #718096 !important;
    margin-bottom: 1.5rem;
}

[b-1r8mgbkqgd] .api-card {
    background: #f7fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
}

[b-1r8mgbkqgd] .api-card p {
    margin: 0 0 1rem 0;
    color: #4a5568 !important;
    line-height: 1.6;
}

[b-1r8mgbkqgd] .api-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

[b-1r8mgbkqgd] .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

[b-1r8mgbkqgd] .info-item .bi {
    font-size: 1.5rem;
    color: #667eea !important;
    flex-shrink: 0;
}

[b-1r8mgbkqgd] .info-item strong {
    display: block;
    color: #2d3748 !important;
    margin-bottom: 0.25rem;
}

[b-1r8mgbkqgd] .info-item p {
    margin: 0;
    color: #4a5568 !important;
}

[b-1r8mgbkqgd] .info-item code {
    margin: 0;
    color: #667eea !important;
    background: #edf2f7;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

[b-1r8mgbkqgd] .endpoint-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

[b-1r8mgbkqgd] .endpoint-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

[b-1r8mgbkqgd] .endpoint-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
}

[b-1r8mgbkqgd] .method {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

[b-1r8mgbkqgd] .method-get {
    background: #48bb78;
    color: white !important;
}

[b-1r8mgbkqgd] .method-post {
    background: #4299e1;
    color: white !important;
}

[b-1r8mgbkqgd] .method-put {
    background: #ed8936;
    color: white !important;
}

[b-1r8mgbkqgd] .method-patch {
    background: #9f7aea;
    color: white !important;
}

[b-1r8mgbkqgd] .method-delete {
    background: #f56565;
    color: white !important;
}

[b-1r8mgbkqgd] .endpoint-path {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #2d3748 !important;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    flex-grow: 1;
}

[b-1r8mgbkqgd] .endpoint-title {
    font-weight: 600;
    color: #4a5568 !important;
}

[b-1r8mgbkqgd] .endpoint-body {
    padding: 1.5rem;
}

[b-1r8mgbkqgd] .endpoint-body p {
    margin: 0 0 1rem 0;
    color: #4a5568 !important;
    line-height: 1.6;
}

[b-1r8mgbkqgd] .params-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

[b-1r8mgbkqgd] .params-table thead {
    background: #f7fafc;
}

[b-1r8mgbkqgd] .params-table th {
    text-align: left;
    padding: 0.75rem;
    font-weight: 600;
    color: #2d3748 !important;
    border-bottom: 2px solid #e2e8f0;
}

[b-1r8mgbkqgd] .params-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568 !important;
}

[b-1r8mgbkqgd] .params-table code {
    background: #edf2f7;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #667eea !important;
}

[b-1r8mgbkqgd] pre {
    background: #2d3748;
    color: #e2e8f0 !important;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1rem 0;
}

[b-1r8mgbkqgd] pre code {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #e2e8f0 !important;
    background: transparent;
}

[b-1r8mgbkqgd] .response-codes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

[b-1r8mgbkqgd] .response-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f7fafc;
    border-radius: 6px;
    color: #4a5568 !important;
}

[b-1r8mgbkqgd] .badge-success,
[b-1r8mgbkqgd] .badge-error,
[b-1r8mgbkqgd] .badge-warning {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
}

[b-1r8mgbkqgd] .badge-success {
    background: #48bb78;
    color: white !important;
}

[b-1r8mgbkqgd] .badge-error {
    background: #f56565;
    color: white !important;
}

[b-1r8mgbkqgd] .badge-warning {
    background: #ed8936;
    color: white !important;
}

[b-1r8mgbkqgd] .model-card {
    background: #f7fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

[b-1r8mgbkqgd] .status-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

[b-1r8mgbkqgd] .status-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #4a5568 !important;
}

[b-1r8mgbkqgd] .status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

[b-1r8mgbkqgd] .status-badge.status-pending {
    background: #fef3c7;
    color: #92400e !important;
}

[b-1r8mgbkqgd] .status-badge.status-ready {
    background: #dbeafe;
    color: #1e40af !important;
}

[b-1r8mgbkqgd] .status-badge.status-ontrack {
    background: #ddd6fe;
    color: #5b21b6 !important;
}

[b-1r8mgbkqgd] .status-badge.status-delivered {
    background: #d1fae5;
    color: #065f46 !important;
}

[b-1r8mgbkqgd] .status-badge.status-cancelled {
    background: #fee2e2;
    color: #991b1b !important;
}

[b-1r8mgbkqgd] .feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

[b-1r8mgbkqgd] .feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568 !important;
}

[b-1r8mgbkqgd] .feature-list .bi {
    color: #48bb78 !important;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    [b-1r8mgbkqgd] .api-reference-container {
        padding: 1rem;
    }

    [b-1r8mgbkqgd] .api-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    [b-1r8mgbkqgd] .api-info-grid {
        grid-template-columns: 1fr;
    }

    [b-1r8mgbkqgd] .endpoint-header {
        flex-wrap: wrap;
    }

    [b-1r8mgbkqgd] .params-table {
        font-size: 0.875rem;
    }

    [b-1r8mgbkqgd] pre code {
        font-size: 0.75rem;
    }
}
/* /Components/Pages/ClientDetail.razor.rz.scp.css */
.client-detail-container[b-t9zjgnv8xt] {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header[b-t9zjgnv8xt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header h3[b-t9zjgnv8xt] {
    margin: 0;
    color: rgba(255, 255, 255, 0.87);
}

.detail-layout[b-t9zjgnv8xt] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

.left-panel[b-t9zjgnv8xt],
.right-panel[b-t9zjgnv8xt] {
    min-height: 400px;
}

.detail-item[b-t9zjgnv8xt] {
    margin-bottom: 16px;
}

.detail-item:last-child[b-t9zjgnv8xt] {
    margin-bottom: 0;
}

.text-muted[b-t9zjgnv8xt] {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

/* Statistics Grid */
.stat-grid[b-t9zjgnv8xt] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card[b-t9zjgnv8xt] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-icon[b-t9zjgnv8xt] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.orders[b-t9zjgnv8xt] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.revenue[b-t9zjgnv8xt] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-content[b-t9zjgnv8xt] {
    flex: 1;
}

.stat-content h5[b-t9zjgnv8xt] {
    margin: 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.87);
}

#clientMap[b-t9zjgnv8xt] {
    border-radius: 8px;
    background: #2d2d2d;
}

/* Responsive layout */
@media (max-width: 1200px) {
    .detail-layout[b-t9zjgnv8xt] {
        grid-template-columns: 1fr;
    }

    .left-panel[b-t9zjgnv8xt] {
        min-height: auto;
    }

    .stat-grid[b-t9zjgnv8xt] {
        grid-template-columns: 1fr;
    }
}

/* MudBlazor overrides */
[b-t9zjgnv8xt] .mud-paper {
    background-color: #1e1e1e;
    color: rgba(255, 255, 255, 0.87);
}

[b-t9zjgnv8xt] .mud-table {
    background-color: transparent;
}

[b-t9zjgnv8xt] .mud-table-head {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-t9zjgnv8xt] .mud-table-cell {
    color: rgba(255, 255, 255, 0.87);
    border-color: rgba(255, 255, 255, 0.12);
}

[b-t9zjgnv8xt] .mud-table-row:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

[b-t9zjgnv8xt] .mud-table-row.mud-table-row-striped {
    background-color: rgba(255, 255, 255, 0.03);
}

[b-t9zjgnv8xt] .mud-input-outlined .mud-input-slot {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-t9zjgnv8xt] .mud-input-label {
    color: rgba(255, 255, 255, 0.6);
}

[b-t9zjgnv8xt] .mud-divider {
    border-color: rgba(255, 255, 255, 0.12);
}
/* /Components/Pages/Clients.razor.rz.scp.css */
.clients-container[b-y74lbjwix2] {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header[b-y74lbjwix2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header h3[b-y74lbjwix2] {
    margin: 0;
    color: rgba(255, 255, 255, 0.87);
}

[b-y74lbjwix2] .mud-table {
    background-color: transparent;
}

[b-y74lbjwix2] .mud-table-head {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-y74lbjwix2] .mud-table-cell {
    color: rgba(255, 255, 255, 0.87);
    border-color: rgba(255, 255, 255, 0.12);
}

[b-y74lbjwix2] .mud-table-row:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

[b-y74lbjwix2] .mud-table-row.mud-table-row-striped {
    background-color: rgba(255, 255, 255, 0.03);
}
/* /Components/Pages/Documents.razor.rz.scp.css */
.page-container[b-bmwv4ewumh] {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-bmwv4ewumh] {
    margin-bottom: 30px;
}

.page-header h3[b-bmwv4ewumh] {
    color: #1976d2;
    font-weight: 600;
    margin-bottom: 8px;
}

.text-muted[b-bmwv4ewumh] {
    color: #666;
}
/* /Components/Pages/EditTruck.razor.rz.scp.css */
.edit-truck-container[b-uqir28jv2h] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-uqir28jv2h] {
    margin-bottom: 2rem;
}

.page-header h3[b-uqir28jv2h] {
    margin: 0.5rem 0;
    color: #fff;
    font-size: 2rem;
}

.form-layout[b-uqir28jv2h] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .form-layout[b-uqir28jv2h] {
        grid-template-columns: 1fr;
    }
}

.form-section[b-uqir28jv2h] {
    display: flex;
    flex-direction: column;
}

.section-title[b-uqir28jv2h] {
    margin: 0 0 1.5rem 0;
    color: #fff;
    font-size: 1.1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #3e3e42;
}

.form-row[b-uqir28jv2h] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-row[b-uqir28jv2h] {
        grid-template-columns: 1fr;
    }
}

.form-actions[b-uqir28jv2h] {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    padding-top: 1rem;
    border-top: 1px solid #3e3e42;
}

[b-uqir28jv2h] .mud-input-root {
    background-color: #1e1e1e;
}

[b-uqir28jv2h] .mud-input {
    color: #fff;
}

[b-uqir28jv2h] .mud-input-label {
    color: #a0a0a0;
}

[b-uqir28jv2h] .mud-select {
    background-color: #1e1e1e;
}
/* /Components/Pages/EditWarehouse.razor.rz.scp.css */
.edit-warehouse-container[b-kqdhed5w3b] {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header[b-kqdhed5w3b] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.loading-container[b-kqdhed5w3b] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.d-flex[b-kqdhed5w3b] {
    display: flex;
}

.gap-2[b-kqdhed5w3b] {
    gap: 0.5rem;
}

.mt-4[b-kqdhed5w3b] {
    margin-top: 1rem;
}

.ml-2[b-kqdhed5w3b] {
    margin-left: 0.5rem;
}

.ms-n1[b-kqdhed5w3b] {
    margin-left: -0.25rem;
}

.my-4[b-kqdhed5w3b] {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mb-3[b-kqdhed5w3b] {
    margin-bottom: 0.75rem;
}
/* /Components/Pages/FinancialReports.razor.rz.scp.css */
.reports-container[b-it63dhbocu] {
    padding: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header[b-it63dhbocu] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header h3[b-it63dhbocu] {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.header-actions[b-it63dhbocu] {
    display: flex;
    gap: 1rem;
}

.loading-container[b-it63dhbocu] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Overview Grid */
.overview-grid[b-it63dhbocu] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metrics-row[b-it63dhbocu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.metric-card[b-it63dhbocu] {
    background: linear-gradient(135deg, rgba(94, 114, 228, 0.1) 0%, rgba(94, 114, 228, 0.05) 100%);
    border: 1px solid rgba(94, 114, 228, 0.2);
    transition: all 0.3s ease;
}

.metric-card:hover[b-it63dhbocu] {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(94, 114, 228, 0.2);
}

.metric-header[b-it63dhbocu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.metric-header h3[b-it63dhbocu] {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.charts-row[b-it63dhbocu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

.chart-card[b-it63dhbocu] {
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Report Section */
.report-section[b-it63dhbocu] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .charts-row[b-it63dhbocu] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reports-container[b-it63dhbocu] {
        padding: 1rem;
    }

    .page-header[b-it63dhbocu] {
        flex-direction: column;
        gap: 1rem;
    }

    .header-actions[b-it63dhbocu] {
        flex-direction: column;
        width: 100%;
    }

    .header-actions button[b-it63dhbocu] {
        width: 100%;
    }

    .metrics-row[b-it63dhbocu] {
        grid-template-columns: 1fr;
    }

    .charts-row[b-it63dhbocu] {
        grid-template-columns: 1fr;
    }
}

/* MudBlazor Override for Dark Theme */
[b-it63dhbocu] .mud-card {
    background-color: rgba(30, 30, 46, 0.8);
}

[b-it63dhbocu] .mud-table {
    background-color: transparent;
}

[b-it63dhbocu] .mud-table-head {
    background-color: rgba(94, 114, 228, 0.1);
}

[b-it63dhbocu] .mud-table-row:hover {
    background-color: rgba(94, 114, 228, 0.1);
}

[b-it63dhbocu] .mud-chart-legend {
    color: rgba(255, 255, 255, 0.8);
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Professional Dashboard Styles */

.dashboard[b-18bdhlfgnd] {
    padding: 32px;
    max-width: 100%;
    margin: 0 auto;
    background: #1a1a1a;
    min-height: 100vh;
}

/* Dashboard Layout - 50/50 Split */
.dashboard-layout[b-18bdhlfgnd] {
    display: flex;
    gap: 24px;
    height: calc(100vh - 200px);
}

.dashboard-left[b-18bdhlfgnd] {
    flex: 1;
    overflow-y: auto;
    padding-right: 12px;
}

.dashboard-right[b-18bdhlfgnd] {
    flex: 1;
    min-width: 0;
}

.dashboard-left[b-18bdhlfgnd]::-webkit-scrollbar {
    width: 6px;
}

.dashboard-left[b-18bdhlfgnd]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.dashboard-left[b-18bdhlfgnd]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.dashboard-left[b-18bdhlfgnd]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Dashboard Header */
.dashboard-header[b-18bdhlfgnd] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content h1[b-18bdhlfgnd] {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.header-content p[b-18bdhlfgnd] {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.header-time[b-18bdhlfgnd] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Metrics Grid */
.metrics-grid[b-18bdhlfgnd] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.metric-card[b-18bdhlfgnd] {
    background: linear-gradient(135deg, #2d2d30 0%, #252528 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.metric-card[b-18bdhlfgnd]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.metric-card:hover[b-18bdhlfgnd] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
}

.metric-card:hover[b-18bdhlfgnd]::before {
    opacity: 1;
    animation: shimmer-b-18bdhlfgnd 2s infinite;
}

@keyframes shimmer-b-18bdhlfgnd {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.metric-header[b-18bdhlfgnd] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.metric-icon[b-18bdhlfgnd] {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.metric-icon.warehouse[b-18bdhlfgnd] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.metric-icon.products[b-18bdhlfgnd] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.metric-icon.orders[b-18bdhlfgnd] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.metric-icon.inventory[b-18bdhlfgnd] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.metric-trend[b-18bdhlfgnd] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.metric-trend.up[b-18bdhlfgnd] {
    background: rgba(67, 233, 123, 0.15);
    color: #43e97b;
}

.metric-trend.down[b-18bdhlfgnd] {
    background: rgba(245, 87, 108, 0.15);
    color: #f5576c;
}

.metric-body h2[b-18bdhlfgnd] {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #ffffff;
    letter-spacing: -1px;
}

.metric-body p[b-18bdhlfgnd] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 500;
}

/* Content Grid */
.content-grid[b-18bdhlfgnd] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.content-card[b-18bdhlfgnd] {
    background: #2d2d30;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover[b-18bdhlfgnd] {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card-header[b-18bdhlfgnd] {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3[b-18bdhlfgnd] {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #ffffff;
}

.card-header p[b-18bdhlfgnd] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.card-action[b-18bdhlfgnd] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.card-action:hover[b-18bdhlfgnd] {
    background: rgba(102, 126, 234, 0.1);
    color: #764ba2;
}

.card-body[b-18bdhlfgnd] {
    padding: 24px;
}

/* Orders List */
.orders-list[b-18bdhlfgnd] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item[b-18bdhlfgnd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    transition: all 0.2s;
}

.order-item:hover[b-18bdhlfgnd] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.order-main[b-18bdhlfgnd] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-number[b-18bdhlfgnd] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.order-customer[b-18bdhlfgnd] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.order-details[b-18bdhlfgnd] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.order-amount[b-18bdhlfgnd] {
    font-weight: 600;
    color: #ffffff;
    font-size: 15px;
}

.status-badge[b-18bdhlfgnd] {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending[b-18bdhlfgnd] {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.status-processing[b-18bdhlfgnd] {
    background: rgba(33, 150, 243, 0.15);
    color: #2196f3;
}

.status-packed[b-18bdhlfgnd], .status-shipped[b-18bdhlfgnd] {
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
}

.status-delivered[b-18bdhlfgnd] {
    background: rgba(67, 233, 123, 0.15);
    color: #43e97b;
}

.status-cancelled[b-18bdhlfgnd] {
    background: rgba(245, 87, 108, 0.15);
    color: #f5576c;
}

.status-info[b-18bdhlfgnd] {
    background: rgba(33, 150, 243, 0.15);
    color: #2196f3;
}

/* Alerts List */
.alerts-list[b-18bdhlfgnd] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alert-item[b-18bdhlfgnd] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 10px;
    transition: all 0.2s;
}

.alert-item:hover[b-18bdhlfgnd] {
    background: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.3);
}

.alert-icon[b-18bdhlfgnd] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    font-size: 18px;
    flex-shrink: 0;
}

.alert-content[b-18bdhlfgnd] {
    flex: 1;
}

.alert-title[b-18bdhlfgnd] {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 4px;
}

.alert-subtitle[b-18bdhlfgnd] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.alert-badge[b-18bdhlfgnd] {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Shipments List */
.shipments-list[b-18bdhlfgnd] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipment-item[b-18bdhlfgnd] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    transition: all 0.2s;
}

.shipment-item:hover[b-18bdhlfgnd] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.shipment-icon[b-18bdhlfgnd] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    font-size: 18px;
    flex-shrink: 0;
}

.shipment-content[b-18bdhlfgnd] {
    flex: 1;
}

.shipment-number[b-18bdhlfgnd] {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 4px;
}

.shipment-details[b-18bdhlfgnd] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Empty State */
.empty-state[b-18bdhlfgnd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.empty-state .bi[b-18bdhlfgnd] {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state p[b-18bdhlfgnd] {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
    .content-grid[b-18bdhlfgnd] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard[b-18bdhlfgnd] {
        padding: 16px;
    }

    .dashboard-header[b-18bdhlfgnd] {
        flex-direction: column;
        gap: 16px;
    }

    .metrics-grid[b-18bdhlfgnd] {
        grid-template-columns: 1fr;
    }

    .header-content h1[b-18bdhlfgnd] {
        font-size: 24px;
    }

    .content-grid[b-18bdhlfgnd] {
        grid-template-columns: 1fr;
    }
}
}

.card-header[b-18bdhlfgnd] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2[b-18bdhlfgnd] {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: rgba(255,255,255, 0.87);
}

.btn-link[b-18bdhlfgnd] {
    color: #776BE7;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-link:hover[b-18bdhlfgnd] {
    text-decoration: underline;
    color: #9B8EF0;
}

.card-body[b-18bdhlfgnd] {
    padding: 1.5rem;
}

/* Data Table */
.data-table[b-18bdhlfgnd] {
    width: 100%;
    border-collapse: collapse;
}

.data-table th[b-18bdhlfgnd] {
    text-align: left;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255, 0.60);
    border-bottom: 2px solid rgba(255,255,255, 0.12);
}

.data-table td[b-18bdhlfgnd] {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255, 0.12);
    font-size: 0.875rem;
    color: rgba(255,255,255, 0.87);
}

.data-table tbody tr:hover[b-18bdhlfgnd] {
    background-color: rgba(255,255,255, 0.05);
}

/* Badges */
.badge[b-18bdhlfgnd] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success[b-18bdhlfgnd] {
    background-color: #d4edda;
    color: #155724;
}

.badge-warning[b-18bdhlfgnd] {
    background-color: #fff3cd;
    color: #856404;
}

.badge-info[b-18bdhlfgnd] {
    background-color: #d1ecf1;
    color: #0c5460;
}

.badge-primary[b-18bdhlfgnd] {
    background-color: #cfe2ff;
    color: #084298;
}

.badge-danger[b-18bdhlfgnd] {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-secondary[b-18bdhlfgnd] {
    background-color: #e2e3e5;
    color: #383d41;
}

/* Alert List */
.alert-list[b-18bdhlfgnd] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alert-item[b-18bdhlfgnd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: rgba(255, 193, 7, 0.15);
    border-left: 3px solid #ffc107;
    border-radius: 4px;
}

.alert-item .bi[b-18bdhlfgnd] {
    font-size: 1.25rem;
}

.alert-item > div[b-18bdhlfgnd] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.alert-item strong[b-18bdhlfgnd] {
    color: rgba(255,255,255, 0.87);
    margin-bottom: 0.25rem;
}

.alert-item small[b-18bdhlfgnd] {
    color: rgba(255,255,255, 0.60);
    font-size: 0.75rem;
}

.text-warning[b-18bdhlfgnd] {
    color: #ffc107;
}

/* Shipment List */
.shipment-list[b-18bdhlfgnd] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shipment-item[b-18bdhlfgnd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: rgba(255,255,255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255, 0.12);
}

.shipment-info[b-18bdhlfgnd] {
    display: flex;
    flex-direction: column;
}

.shipment-info strong[b-18bdhlfgnd] {
    color: rgba(255,255,255, 0.87);
    margin-bottom: 0.25rem;
}

.shipment-info small[b-18bdhlfgnd] {
    color: rgba(255,255,255, 0.60);
    font-size: 0.75rem;
}

/* Quick Actions */
.quick-actions[b-18bdhlfgnd] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.action-button[b-18bdhlfgnd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #776BE7 0%, #9B8EF0 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    gap: 0.5rem;
}

.action-button:hover[b-18bdhlfgnd] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(119, 107, 231, 0.5);
    color: white;
}

.action-button .bi[b-18bdhlfgnd] {
    font-size: 2rem;
}

/* Empty State */
.empty-state[b-18bdhlfgnd] {
    text-align: center;
    color: rgba(255,255,255, 0.38);
    padding: 2rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-grid[b-18bdhlfgnd] {
        grid-template-columns: 1fr;
    }

    .stats-grid[b-18bdhlfgnd] {
        grid-template-columns: 1fr;
    }

    .quick-actions[b-18bdhlfgnd] {
        grid-template-columns: 1fr;
    }

    .dashboard-layout[b-18bdhlfgnd] {
        flex-direction: column;
        height: auto;
    }

    .dashboard-left[b-18bdhlfgnd], .dashboard-right[b-18bdhlfgnd] {
        flex: none;
        width: 100%;
    }

    .metrics-grid[b-18bdhlfgnd] {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   AI CHAT STYLES
   ============================================ */

.chat-container[b-18bdhlfgnd] {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #2d2d30;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.chat-header[b-18bdhlfgnd] {
    padding: 20px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content[b-18bdhlfgnd] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-icon[b-18bdhlfgnd] {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.chat-header h3[b-18bdhlfgnd] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.chat-header p[b-18bdhlfgnd] {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.chat-minimize[b-18bdhlfgnd] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-minimize:hover[b-18bdhlfgnd] {
    background: rgba(255, 255, 255, 0.3);
}

.chat-messages[b-18bdhlfgnd] {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #1a1a1a;
}

.chat-messages[b-18bdhlfgnd]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-18bdhlfgnd]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.chat-messages[b-18bdhlfgnd]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.chat-messages[b-18bdhlfgnd]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-message[b-18bdhlfgnd] {
    display: flex;
    gap: 12px;
    animation: slideIn-b-18bdhlfgnd 0.3s ease-out;
}

@keyframes slideIn-b-18bdhlfgnd {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar[b-18bdhlfgnd] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.user-message .message-avatar[b-18bdhlfgnd] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.ai-message .message-avatar[b-18bdhlfgnd] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.message-content[b-18bdhlfgnd] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.message-text[b-18bdhlfgnd] {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.06);
    white-space: pre-line;
}

.user-message .message-text[b-18bdhlfgnd] {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-color: rgba(79, 172, 254, 0.3);
}

.message-time[b-18bdhlfgnd] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 16px;
}

.typing-indicator[b-18bdhlfgnd] {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: fit-content;
}

.typing-indicator span[b-18bdhlfgnd] {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: typing-b-18bdhlfgnd 1.4s infinite;
}

.typing-indicator span:nth-child(2)[b-18bdhlfgnd] {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3)[b-18bdhlfgnd] {
    animation-delay: 0.4s;
}

@keyframes typing-b-18bdhlfgnd {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.chat-input-container[b-18bdhlfgnd] {
    padding: 16px 24px;
    background: #2d2d30;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-suggestions[b-18bdhlfgnd] {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.suggestion-chip[b-18bdhlfgnd] {
    padding: 8px 14px;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    color: #667eea;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.suggestion-chip:hover[b-18bdhlfgnd] {
    background: rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

.chat-input-wrapper[b-18bdhlfgnd] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.chat-input[b-18bdhlfgnd] {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.chat-input[b-18bdhlfgnd]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chat-input:focus[b-18bdhlfgnd] {
    background: rgba(255, 255, 255, 0.08);
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chat-send[b-18bdhlfgnd] {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.chat-send:hover:not(:disabled)[b-18bdhlfgnd] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.chat-send:disabled[b-18bdhlfgnd] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Bootstrap Icons */
.bi[b-18bdhlfgnd] {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
}

.bi-building[b-18bdhlfgnd]::before {
    content: "🏢";
}

.bi-box-seam[b-18bdhlfgnd]::before {
    content: "📦";
}

.bi-cart[b-18bdhlfgnd]::before {
    content: "🛒";
}

.bi-boxes[b-18bdhlfgnd]::before {
    content: "📊";
}

.bi-plus-circle[b-18bdhlfgnd]::before {
    content: "➕";
}

.bi-cart-plus[b-18bdhlfgnd]::before {
    content: "🛒";
}

.bi-clipboard-check[b-18bdhlfgnd]::before {
    content: "✅";
}

.bi-exclamation-triangle[b-18bdhlfgnd]::before {
    content: "⚠️";
}
/* /Components/Pages/Inbound.razor.rz.scp.css */
.page-container[b-21pryqptrs] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-21pryqptrs] {
    margin-bottom: 2rem;
}

.stats-grid[b-21pryqptrs] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stat-card[b-21pryqptrs] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon[b-21pryqptrs] {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-content[b-21pryqptrs] {
    flex: 1;
}

.order-link[b-21pryqptrs] {
    color: var(--mud-palette-primary);
    text-decoration: none;
    font-weight: 500;
}

.order-link:hover[b-21pryqptrs] {
    text-decoration: underline;
}
/* /Components/Pages/Inventory.razor.rz.scp.css */
.inventory-container[b-i86jtdzazz] {
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-i86jtdzazz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-header h3[b-i86jtdzazz] {
    margin: 0;
    color: #e0e0e0;
    font-size: 1.8rem;
    font-weight: 500;
}

.loading-container[b-i86jtdzazz] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.stats-grid[b-i86jtdzazz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-i86jtdzazz] {
    background: #2d2d30;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #3e3e42;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover[b-i86jtdzazz] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stat-icon[b-i86jtdzazz] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-content[b-i86jtdzazz] {
    flex: 1;
}

.stat-label[b-i86jtdzazz] {
    font-size: 0.875rem;
    color: #a0a0a0;
    margin-bottom: 0.25rem;
}

.stat-value[b-i86jtdzazz] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e0e0e0;
}

.table-container[b-i86jtdzazz] {
    background: #2d2d30;
    border-radius: 12px;
    border: 1px solid #3e3e42;
    overflow: hidden;
}

.stock-ok[b-i86jtdzazz] {
    color: #4caf50;
    font-weight: 600;
}

.stock-low[b-i86jtdzazz] {
    color: #ff9800;
    font-weight: 600;
}

.stock-out[b-i86jtdzazz] {
    color: #f44336;
    font-weight: 600;
}

.text-muted[b-i86jtdzazz] {
    color: #757575;
    font-style: italic;
}

@media (max-width: 768px) {
    .inventory-container[b-i86jtdzazz] {
        padding: 1rem;
    }

    .stats-grid[b-i86jtdzazz] {
        grid-template-columns: 1fr;
    }

    .page-header[b-i86jtdzazz] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
/* /Components/Pages/InventoryDetail.razor.rz.scp.css */
.inventory-detail-container[b-c9qu11wzfg] {
    padding: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.loading-container[b-c9qu11wzfg] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.detail-header[b-c9qu11wzfg] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.detail-header h3[b-c9qu11wzfg] {
    margin: 0.5rem 0 0.5rem 0;
    color: #e0e0e0;
    font-size: 2rem;
    font-weight: 500;
}

.header-meta[b-c9qu11wzfg] {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.meta-text[b-c9qu11wzfg] {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.header-actions[b-c9qu11wzfg] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.detail-layout[b-c9qu11wzfg] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}

.info-panel[b-c9qu11wzfg] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-panel[b-c9qu11wzfg] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card[b-c9qu11wzfg] {
    background: #2d2d30;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #3e3e42;
}

.info-card h4[b-c9qu11wzfg] {
    margin: 0 0 1.5rem 0;
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #3e3e42;
}

.info-grid[b-c9qu11wzfg] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.info-item[b-c9qu11wzfg] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item.full-width[b-c9qu11wzfg] {
    grid-column: 1 / -1;
}

.info-label[b-c9qu11wzfg] {
    font-size: 0.85rem;
    color: #a0a0a0;
    font-weight: 500;
}

.info-value[b-c9qu11wzfg] {
    color: #e0e0e0;
    font-size: 1rem;
}

.location-link[b-c9qu11wzfg] {
    color: #4facfe;
    text-decoration: none;
    font-weight: 500;
}

.location-link:hover[b-c9qu11wzfg] {
    text-decoration: underline;
}

.stock-display[b-c9qu11wzfg] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stock-item[b-c9qu11wzfg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #1e1e1e;
    border-radius: 8px;
    border: 1px solid #3e3e42;
}

.stock-item.primary[b-c9qu11wzfg] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: #667eea;
}

.stock-label[b-c9qu11wzfg] {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.stock-value[b-c9qu11wzfg] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e0e0e0;
}

.stock-value.reserved[b-c9qu11wzfg] {
    color: #ff9800;
}

.stock-ok[b-c9qu11wzfg] {
    color: #4caf50 !important;
}

.stock-low[b-c9qu11wzfg] {
    color: #ff9800 !important;
}

.stock-out[b-c9qu11wzfg] {
    color: #f44336 !important;
}

.section-card[b-c9qu11wzfg] {
    background: #2d2d30;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #3e3e42;
}

.section-card h4[b-c9qu11wzfg] {
    margin: 0 0 1.5rem 0;
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #3e3e42;
}

.quantity-positive[b-c9qu11wzfg] {
    color: #4caf50;
    font-weight: 600;
}

.quantity-negative[b-c9qu11wzfg] {
    color: #f44336;
    font-weight: 600;
}

.empty-state[b-c9qu11wzfg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #a0a0a0;
    gap: 1rem;
}

.empty-state p[b-c9qu11wzfg] {
    margin: 0;
    font-size: 1.1rem;
}

@media (max-width: 1200px) {
    .detail-layout[b-c9qu11wzfg] {
        grid-template-columns: 1fr;
    }

    .info-panel[b-c9qu11wzfg] {
        order: 2;
    }

    .content-panel[b-c9qu11wzfg] {
        order: 1;
    }
}

@media (max-width: 768px) {
    .inventory-detail-container[b-c9qu11wzfg] {
        padding: 1rem;
    }

    .detail-header[b-c9qu11wzfg] {
        flex-direction: column;
    }

    .info-grid[b-c9qu11wzfg] {
        grid-template-columns: 1fr;
    }

    .header-actions[b-c9qu11wzfg] {
        width: 100%;
    }

    .header-actions button[b-c9qu11wzfg] {
        flex: 1;
    }
}
/* /Components/Pages/Marketplace.razor.rz.scp.css */
.marketplace-container[b-ypfofkm7vl] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-ypfofkm7vl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-header h3[b-ypfofkm7vl] {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle[b-ypfofkm7vl] {
    margin: 0.5rem 0 0 0;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.header-actions[b-ypfofkm7vl] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.loading-container[b-ypfofkm7vl] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.orders-grid[b-ypfofkm7vl] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.order-card[b-ypfofkm7vl] {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 12px !important;
}

.order-card:hover[b-ypfofkm7vl] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.order-header[b-ypfofkm7vl] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.order-details[b-ypfofkm7vl] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.detail-row[b-ypfofkm7vl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(0, 0, 0, 0.7);
}

.detail-row .mud-icon-root[b-ypfofkm7vl] {
    color: rgba(0, 0, 0, 0.5);
}

.bids-list[b-ypfofkm7vl] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.bid-item[b-ypfofkm7vl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    border-left: 3px solid rgba(0, 0, 0, 0.1);
}

.bid-item.lowest-bid[b-ypfofkm7vl] {
    background: rgba(76, 175, 80, 0.08);
    border-left: 3px solid #4caf50;
}

.bid-info[b-ypfofkm7vl] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bids-table[b-ypfofkm7vl] {
    margin-top: 1rem;
}

.empty-state[b-ypfofkm7vl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

.empty-state .mud-icon-root[b-ypfofkm7vl] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.bid-dialog-content[b-ypfofkm7vl] {
    padding: 1rem 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .marketplace-container[b-ypfofkm7vl] {
        padding: 1rem;
    }

    .page-header[b-ypfofkm7vl] {
        flex-direction: column;
        align-items: flex-start;
    }

    .orders-grid[b-ypfofkm7vl] {
        grid-template-columns: 1fr;
    }

    .header-actions[b-ypfofkm7vl] {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .detail-row[b-ypfofkm7vl] {
        color: rgba(255, 255, 255, 0.7);
    }

    .detail-row .mud-icon-root[b-ypfofkm7vl] {
        color: rgba(255, 255, 255, 0.5);
    }

    .bid-item[b-ypfofkm7vl] {
        background: rgba(255, 255, 255, 0.05);
        border-left: 3px solid rgba(255, 255, 255, 0.1);
    }

    .bid-item.lowest-bid[b-ypfofkm7vl] {
        background: rgba(76, 175, 80, 0.15);
        border-left: 3px solid #4caf50;
    }

    .empty-state[b-ypfofkm7vl] {
        color: rgba(255, 255, 255, 0.5);
    }
}
/* /Components/Pages/NewShipment.razor.rz.scp.css */
.new-shipment-container[b-x57ivccup0] {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-x57ivccup0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.page-header h3[b-x57ivccup0] {
    margin: 0;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header[b-x57ivccup0] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
/* /Components/Pages/OperationsReports.razor.rz.scp.css */
.reports-container[b-vbtbhr30ym] {
    padding: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header[b-vbtbhr30ym] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header h3[b-vbtbhr30ym] {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.header-actions[b-vbtbhr30ym] {
    display: flex;
    gap: 1rem;
}

.loading-container[b-vbtbhr30ym] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Overview Grid */
.overview-grid[b-vbtbhr30ym] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metrics-row[b-vbtbhr30ym] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.metric-card[b-vbtbhr30ym] {
    background: linear-gradient(135deg, rgba(94, 114, 228, 0.1) 0%, rgba(94, 114, 228, 0.05) 100%);
    border: 1px solid rgba(94, 114, 228, 0.2);
    transition: all 0.3s ease;
}

.metric-card:hover[b-vbtbhr30ym] {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(94, 114, 228, 0.2);
}

.metric-header[b-vbtbhr30ym] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.metric-header h3[b-vbtbhr30ym] {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.charts-row[b-vbtbhr30ym] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

.chart-card[b-vbtbhr30ym] {
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Report Section */
.report-section[b-vbtbhr30ym] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .charts-row[b-vbtbhr30ym] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reports-container[b-vbtbhr30ym] {
        padding: 1rem;
    }

    .page-header[b-vbtbhr30ym] {
        flex-direction: column;
        gap: 1rem;
    }

    .header-actions[b-vbtbhr30ym] {
        flex-direction: column;
        width: 100%;
    }

    .header-actions button[b-vbtbhr30ym] {
        width: 100%;
    }

    .metrics-row[b-vbtbhr30ym] {
        grid-template-columns: 1fr;
    }

    .charts-row[b-vbtbhr30ym] {
        grid-template-columns: 1fr;
    }
}

/* MudBlazor Override for Dark Theme */
[b-vbtbhr30ym] .mud-card {
    background-color: rgba(30, 30, 46, 0.8);
}

[b-vbtbhr30ym] .mud-table {
    background-color: transparent;
}

[b-vbtbhr30ym] .mud-table-head {
    background-color: rgba(94, 114, 228, 0.1);
}

[b-vbtbhr30ym] .mud-table-row:hover {
    background-color: rgba(94, 114, 228, 0.1);
}

[b-vbtbhr30ym] .mud-chart-legend {
    color: rgba(255, 255, 255, 0.8);
}
/* /Components/Pages/OrderDetail.razor.rz.scp.css */
.order-detail-container[b-zpnlrcy0bf] {
    padding: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.loading-container[b-zpnlrcy0bf] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.detail-header[b-zpnlrcy0bf] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.detail-header h3[b-zpnlrcy0bf] {
    margin: 0.5rem 0 0.5rem 0;
    color: #e0e0e0;
    font-size: 2rem;
    font-weight: 500;
}

.header-meta[b-zpnlrcy0bf] {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.meta-text[b-zpnlrcy0bf] {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.header-actions[b-zpnlrcy0bf] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.detail-layout[b-zpnlrcy0bf] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}

.info-panel[b-zpnlrcy0bf] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-panel[b-zpnlrcy0bf] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card[b-zpnlrcy0bf] {
    background: #2d2d30;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #3e3e42;
}

.info-card h4[b-zpnlrcy0bf] {
    margin: 0 0 1.5rem 0;
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #3e3e42;
}

.info-grid[b-zpnlrcy0bf] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.info-item[b-zpnlrcy0bf] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item.full-width[b-zpnlrcy0bf] {
    grid-column: 1 / -1;
}

.info-label[b-zpnlrcy0bf] {
    font-size: 0.85rem;
    color: #a0a0a0;
    font-weight: 500;
}

.info-value[b-zpnlrcy0bf] {
    color: #e0e0e0;
    font-size: 1rem;
}

.address-block[b-zpnlrcy0bf] {
    color: #e0e0e0;
    line-height: 1.6;
}

.address-block div[b-zpnlrcy0bf] {
    margin-bottom: 0.25rem;
}

.summary-row[b-zpnlrcy0bf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #3e3e42;
}

.summary-row.total[b-zpnlrcy0bf] {
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid #3e3e42;
}

.summary-label[b-zpnlrcy0bf] {
    color: #a0a0a0;
    font-size: 0.95rem;
}

.summary-row.total .summary-label[b-zpnlrcy0bf] {
    font-weight: 600;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.summary-value[b-zpnlrcy0bf] {
    color: #e0e0e0;
    font-size: 1rem;
}

.summary-row.total .summary-value[b-zpnlrcy0bf] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4caf50;
}

.notes-text[b-zpnlrcy0bf] {
    color: #e0e0e0;
    line-height: 1.6;
    padding: 1rem;
    background: #1e1e1e;
    border-radius: 8px;
    border: 1px solid #3e3e42;
}

.section-card[b-zpnlrcy0bf] {
    background: #2d2d30;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #3e3e42;
}

.section-card h4[b-zpnlrcy0bf] {
    margin: 0 0 1.5rem 0;
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #3e3e42;
}

.link[b-zpnlrcy0bf] {
    color: #4facfe;
    text-decoration: none;
    font-weight: 500;
}

.link:hover[b-zpnlrcy0bf] {
    text-decoration: underline;
}

.quantity-complete[b-zpnlrcy0bf] {
    color: #4caf50;
    font-weight: 600;
}

.quantity-partial[b-zpnlrcy0bf] {
    color: #ff9800;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .detail-layout[b-zpnlrcy0bf] {
        grid-template-columns: 1fr;
    }

    .info-panel[b-zpnlrcy0bf] {
        order: 2;
    }

    .content-panel[b-zpnlrcy0bf] {
        order: 1;
    }
}

@media (max-width: 768px) {
    .order-detail-container[b-zpnlrcy0bf] {
        padding: 1rem;
    }

    .detail-header[b-zpnlrcy0bf] {
        flex-direction: column;
    }

    .info-grid[b-zpnlrcy0bf] {
        grid-template-columns: 1fr;
    }

    .header-actions[b-zpnlrcy0bf] {
        width: 100%;
    }

    .header-actions button[b-zpnlrcy0bf] {
        flex: 1;
    }
}
/* /Components/Pages/Orders.razor.rz.scp.css */
.orders-container[b-02gcjt7ctu] {
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-02gcjt7ctu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-header h3[b-02gcjt7ctu] {
    margin: 0;
    color: #e0e0e0;
    font-size: 1.8rem;
    font-weight: 500;
}

.loading-container[b-02gcjt7ctu] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.stats-grid[b-02gcjt7ctu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-02gcjt7ctu] {
    background: #2d2d30;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #3e3e42;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover[b-02gcjt7ctu] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stat-icon[b-02gcjt7ctu] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-content[b-02gcjt7ctu] {
    flex: 1;
}

.stat-label[b-02gcjt7ctu] {
    font-size: 0.875rem;
    color: #a0a0a0;
    margin-bottom: 0.25rem;
}

.stat-value[b-02gcjt7ctu] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e0e0e0;
}

.table-container[b-02gcjt7ctu] {
    background: #2d2d30;
    border-radius: 12px;
    border: 1px solid #3e3e42;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.cluster-controls[b-02gcjt7ctu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

.cluster-controls h6[b-02gcjt7ctu] {
    margin: 0;
    color: #e0e0e0;
}

.cluster-buttons[b-02gcjt7ctu] {
    display: flex;
    gap: 0.5rem;
}

.order-cluster[b-02gcjt7ctu] {
    background: #252526;
    border-radius: 8px;
    border: 1px solid #3e3e42;
    overflow: hidden;
    margin-bottom: 1rem;
}

[b-02gcjt7ctu] .order-cluster-panel {
    background: #252526 !important;
    border-radius: 8px !important;
    border: 1px solid #3e3e42 !important;
    overflow: hidden !important;
    margin-bottom: 1rem !important;
}

[b-02gcjt7ctu] .order-cluster-panel .mud-expand-panel-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: 1rem 1.5rem !important;
    min-height: auto !important;
}

[b-02gcjt7ctu] .order-cluster-panel .mud-expand-panel-content {
    padding: 0 !important;
    background: #252526 !important;
}

.cluster-header[b-02gcjt7ctu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cluster-header-content[b-02gcjt7ctu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
}

.cluster-info[b-02gcjt7ctu] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.cluster-info strong[b-02gcjt7ctu] {
    font-size: 1rem;
}

.cluster-destination[b-02gcjt7ctu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cluster-table[b-02gcjt7ctu] {
    background: transparent !important;
}

.no-orders[b-02gcjt7ctu] {
    padding: 3rem;
    text-align: center;
}

.order-link[b-02gcjt7ctu] {
    color: #4facfe;
    text-decoration: none;
    font-weight: 600;
}

.order-link:hover[b-02gcjt7ctu] {
    text-decoration: underline;
}

.customer-info[b-02gcjt7ctu] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.customer-info strong[b-02gcjt7ctu] {
    color: #e0e0e0;
}

.customer-email[b-02gcjt7ctu] {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.partner-info[b-02gcjt7ctu] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.partner-info strong[b-02gcjt7ctu] {
    color: #e0e0e0;
}

.partner-customer-id[b-02gcjt7ctu] {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.partner-customer-name[b-02gcjt7ctu] {
    font-size: 0.85rem;
    color: #a0a0a0;
    font-style: italic;
}

.ship-urgent[b-02gcjt7ctu] {
    color: #ff9800;
    font-weight: 600;
}

.ship-overdue[b-02gcjt7ctu] {
    color: #f44336;
    font-weight: 600;
}

@media (max-width: 768px) {
    .orders-container[b-02gcjt7ctu] {
        padding: 1rem;
    }

    .stats-grid[b-02gcjt7ctu] {
        grid-template-columns: 1fr;
    }

    .page-header[b-02gcjt7ctu] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
/* /Components/Pages/Outbound.razor.rz.scp.css */
.page-container[b-don5r25zhj] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-don5r25zhj] {
    margin-bottom: 2rem;
}

.stats-grid[b-don5r25zhj] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stat-card[b-don5r25zhj] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon[b-don5r25zhj] {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-content[b-don5r25zhj] {
    flex: 1;
}

.order-link[b-don5r25zhj] {
    color: var(--mud-palette-primary);
    text-decoration: none;
    font-weight: 500;
}

.order-link:hover[b-don5r25zhj] {
    text-decoration: underline;
}

.truck-info-grid[b-don5r25zhj] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.truck-info-card[b-don5r25zhj] {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.truck-info-label[b-don5r25zhj] {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.truck-info-value[b-don5r25zhj] {
    font-size: 1rem;
    font-weight: 600;
}

.loaded-order-item[b-don5r25zhj] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}
/* /Components/Pages/ProductDetail.razor.rz.scp.css */
.product-detail-container[b-x4xkr3ruqv] {
    padding: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.loading-container[b-x4xkr3ruqv] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.detail-header[b-x4xkr3ruqv] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.detail-header h3[b-x4xkr3ruqv] {
    margin: 0.5rem 0 0.5rem 0;
    color: #e0e0e0;
    font-size: 2rem;
    font-weight: 500;
}

.header-meta[b-x4xkr3ruqv] {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.meta-text[b-x4xkr3ruqv] {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.header-actions[b-x4xkr3ruqv] {
    display: flex;
    gap: 0.5rem;
}

.detail-layout[b-x4xkr3ruqv] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}

.info-panel[b-x4xkr3ruqv] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-panel[b-x4xkr3ruqv] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card[b-x4xkr3ruqv] {
    background: #2d2d30;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #3e3e42;
}

.info-card h4[b-x4xkr3ruqv] {
    margin: 0 0 1.5rem 0;
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #3e3e42;
}

.info-grid[b-x4xkr3ruqv] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.info-item[b-x4xkr3ruqv] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item.full-width[b-x4xkr3ruqv] {
    grid-column: 1 / -1;
}

.info-label[b-x4xkr3ruqv] {
    font-size: 0.85rem;
    color: #a0a0a0;
    font-weight: 500;
}

.info-value[b-x4xkr3ruqv] {
    color: #e0e0e0;
    font-size: 1rem;
}

.info-value.price[b-x4xkr3ruqv] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4caf50;
}

.stats-row[b-x4xkr3ruqv] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stat-card-small[b-x4xkr3ruqv] {
    background: #2d2d30;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #3e3e42;
}

.stat-icon-small[b-x4xkr3ruqv] {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.stat-content-small[b-x4xkr3ruqv] {
    flex: 1;
}

.stat-label-small[b-x4xkr3ruqv] {
    font-size: 0.8rem;
    color: #a0a0a0;
    margin-bottom: 0.25rem;
}

.stat-value-small[b-x4xkr3ruqv] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e0e0e0;
}

.section-card[b-x4xkr3ruqv] {
    background: #2d2d30;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #3e3e42;
}

.section-card h4[b-x4xkr3ruqv] {
    margin: 0 0 1.5rem 0;
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #3e3e42;
}

.stock-ok[b-x4xkr3ruqv] {
    color: #4caf50;
    font-weight: 600;
}

.stock-low[b-x4xkr3ruqv] {
    color: #ff9800;
    font-weight: 600;
}

.stock-out[b-x4xkr3ruqv] {
    color: #f44336;
    font-weight: 600;
}

.order-link[b-x4xkr3ruqv] {
    color: #4facfe;
    text-decoration: none;
    font-weight: 500;
}

.order-link:hover[b-x4xkr3ruqv] {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .detail-layout[b-x4xkr3ruqv] {
        grid-template-columns: 1fr;
    }

    .info-panel[b-x4xkr3ruqv] {
        order: 2;
    }

    .content-panel[b-x4xkr3ruqv] {
        order: 1;
    }
}

@media (max-width: 768px) {
    .product-detail-container[b-x4xkr3ruqv] {
        padding: 1rem;
    }

    .detail-header[b-x4xkr3ruqv] {
        flex-direction: column;
    }

    .info-grid[b-x4xkr3ruqv] {
        grid-template-columns: 1fr;
    }

    .stats-row[b-x4xkr3ruqv] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Products.razor.rz.scp.css */
.products-container[b-zsye0cbaep] {
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-zsye0cbaep] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-header h3[b-zsye0cbaep] {
    margin: 0;
    color: #e0e0e0;
    font-size: 1.8rem;
    font-weight: 500;
}

.loading-container[b-zsye0cbaep] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.stats-grid[b-zsye0cbaep] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-zsye0cbaep] {
    background: #2d2d30;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #3e3e42;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover[b-zsye0cbaep] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stat-icon[b-zsye0cbaep] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-content[b-zsye0cbaep] {
    flex: 1;
}

.stat-label[b-zsye0cbaep] {
    font-size: 0.875rem;
    color: #a0a0a0;
    margin-bottom: 0.25rem;
}

.stat-value[b-zsye0cbaep] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e0e0e0;
}

.table-container[b-zsye0cbaep] {
    background: #2d2d30;
    border-radius: 12px;
    border: 1px solid #3e3e42;
    overflow: hidden;
}

.product-name[b-zsye0cbaep] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-name strong[b-zsye0cbaep] {
    color: #e0e0e0;
}

.product-description[b-zsye0cbaep] {
    font-size: 0.85rem;
    color: #a0a0a0;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stock-ok[b-zsye0cbaep] {
    color: #4caf50;
    font-weight: 600;
}

.stock-low[b-zsye0cbaep] {
    color: #ff9800;
    font-weight: 600;
}

.stock-out[b-zsye0cbaep] {
    color: #f44336;
    font-weight: 600;
}

@media (max-width: 768px) {
    .products-container[b-zsye0cbaep] {
        padding: 1rem;
    }

    .stats-grid[b-zsye0cbaep] {
        grid-template-columns: 1fr;
    }

    .page-header[b-zsye0cbaep] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
/* /Components/Pages/ShipmentDetail.razor.rz.scp.css */
.shipment-detail-container[b-ysz99owm65] {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header[b-ysz99owm65] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header h3[b-ysz99owm65] {
    margin: 0;
    color: rgba(255, 255, 255, 0.87);
}

.detail-layout[b-ysz99owm65] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

.left-panel[b-ysz99owm65],
.right-panel[b-ysz99owm65] {
    min-height: 600px;
}

.detail-item[b-ysz99owm65] {
    margin-bottom: 16px;
}

.detail-item:last-child[b-ysz99owm65] {
    margin-bottom: 0;
}

.text-muted[b-ysz99owm65] {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

#map[b-ysz99owm65] {
    border-radius: 4px;
    background: #2d2d2d;
}

/* Map Header and Legend */
.map-header[b-ysz99owm65] {
    margin-bottom: 16px;
}

.map-legend[b-ysz99owm65] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.legend-item[b-ysz99owm65] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-icon[b-ysz99owm65] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend-icon.green[b-ysz99owm65] {
    background-color: #2AAA8A;
}

.legend-icon.blue[b-ysz99owm65] {
    background-color: #3388FF;
}

.legend-icon.red[b-ysz99owm65] {
    background-color: #CB2B3E;
}

.legend-icon.gray[b-ysz99owm65] {
    background-color: #9CA3AF;
}

/* Responsive layout */
@media (max-width: 1200px) {
    .detail-layout[b-ysz99owm65] {
        grid-template-columns: 1fr;
    }

    .left-panel[b-ysz99owm65] {
        min-height: auto;
    }

    .map-legend[b-ysz99owm65] {
        gap: 12px;
    }
}

/* MudBlazor Paper dark theme override */
[b-ysz99owm65] .mud-paper {
    background-color: #1e1e1e;
    color: rgba(255, 255, 255, 0.87);
}

[b-ysz99owm65] .mud-input-outlined .mud-input-slot {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-ysz99owm65] .mud-input-label {
    color: rgba(255, 255, 255, 0.6);
}

[b-ysz99owm65] .mud-divider {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Custom Leaflet Marker Styling */
[b-ysz99owm65] .custom-marker-icon {
    background: transparent !important;
    border: none !important;
}

[b-ysz99owm65] .leaflet-popup-content-wrapper {
    background-color: #1e1e1e;
    color: rgba(255, 255, 255, 0.87);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

[b-ysz99owm65] .leaflet-popup-tip {
    background-color: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

[b-ysz99owm65] .leaflet-container a {
    color: #776BE7;
}
/* /Components/Pages/Shipments.razor.rz.scp.css */
.shipments-container[b-44g08y62lx] {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header[b-44g08y62lx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header h3[b-44g08y62lx] {
    margin: 0;
    color: rgba(255, 255, 255, 0.87);
}

[b-44g08y62lx] .mud-table {
    background-color: transparent;
}

[b-44g08y62lx] .mud-table-head {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-44g08y62lx] .mud-table-cell {
    color: rgba(255, 255, 255, 0.87);
    border-color: rgba(255, 255, 255, 0.12);
}

[b-44g08y62lx] .mud-table-row:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

[b-44g08y62lx] .mud-table-row.mud-table-row-striped {
    background-color: rgba(255, 255, 255, 0.03);
}
/* /Components/Pages/SupplierDetail.razor.rz.scp.css */
.supplier-detail-container[b-qdjspm00dr] {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header[b-qdjspm00dr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header h3[b-qdjspm00dr] {
    margin: 0;
    color: rgba(255, 255, 255, 0.87);
}

.detail-layout[b-qdjspm00dr] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

.left-panel[b-qdjspm00dr],
.right-panel[b-qdjspm00dr] {
    min-height: 400px;
}

.detail-item[b-qdjspm00dr] {
    margin-bottom: 16px;
}

.detail-item:last-child[b-qdjspm00dr] {
    margin-bottom: 0;
}

.text-muted[b-qdjspm00dr] {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

/* Statistics Grid */
.stat-grid[b-qdjspm00dr] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card[b-qdjspm00dr] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-icon[b-qdjspm00dr] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.orders[b-qdjspm00dr] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.spending[b-qdjspm00dr] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-content[b-qdjspm00dr] {
    flex: 1;
}

.stat-content h5[b-qdjspm00dr] {
    margin: 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.87);
}

#supplierMap[b-qdjspm00dr] {
    border-radius: 8px;
    background: #2d2d2d;
}

/* Responsive layout */
@media (max-width: 1200px) {
    .detail-layout[b-qdjspm00dr] {
        grid-template-columns: 1fr;
    }

    .left-panel[b-qdjspm00dr] {
        min-height: auto;
    }

    .stat-grid[b-qdjspm00dr] {
        grid-template-columns: 1fr;
    }
}

/* MudBlazor overrides */
[b-qdjspm00dr] .mud-paper {
    background-color: #1e1e1e;
    color: rgba(255, 255, 255, 0.87);
}

[b-qdjspm00dr] .mud-table {
    background-color: transparent;
}

[b-qdjspm00dr] .mud-table-head {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-qdjspm00dr] .mud-table-cell {
    color: rgba(255, 255, 255, 0.87);
    border-color: rgba(255, 255, 255, 0.12);
}

[b-qdjspm00dr] .mud-table-row:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

[b-qdjspm00dr] .mud-table-row.mud-table-row-striped {
    background-color: rgba(255, 255, 255, 0.03);
}

[b-qdjspm00dr] .mud-input-outlined .mud-input-slot {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-qdjspm00dr] .mud-input-label {
    color: rgba(255, 255, 255, 0.6);
}

[b-qdjspm00dr] .mud-divider {
    border-color: rgba(255, 255, 255, 0.12);
}
/* /Components/Pages/Suppliers.razor.rz.scp.css */
.suppliers-container[b-ugd0e2yttc] {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header[b-ugd0e2yttc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header h3[b-ugd0e2yttc] {
    margin: 0;
    color: rgba(255, 255, 255, 0.87);
}

[b-ugd0e2yttc] .mud-table {
    background-color: transparent;
}

[b-ugd0e2yttc] .mud-table-head {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-ugd0e2yttc] .mud-table-cell {
    color: rgba(255, 255, 255, 0.87);
    border-color: rgba(255, 255, 255, 0.12);
}

[b-ugd0e2yttc] .mud-table-row:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

[b-ugd0e2yttc] .mud-table-row.mud-table-row-striped {
    background-color: rgba(255, 255, 255, 0.03);
}
/* /Components/Pages/TruckDetail.razor.rz.scp.css */
.truck-detail-container[b-7bxk6a5kzb] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.detail-header[b-7bxk6a5kzb] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.detail-header h3[b-7bxk6a5kzb] {
    margin: 0.5rem 0;
    color: #fff;
    font-size: 2rem;
}

.header-meta[b-7bxk6a5kzb] {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.meta-text[b-7bxk6a5kzb] {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.header-actions[b-7bxk6a5kzb] {
    display: flex;
    gap: 0.75rem;
}

.detail-layout[b-7bxk6a5kzb] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .detail-layout[b-7bxk6a5kzb] {
        grid-template-columns: 1fr;
    }
}

.info-panel[b-7bxk6a5kzb], .content-panel[b-7bxk6a5kzb] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card[b-7bxk6a5kzb] {
    background: #252526;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #3e3e42;
}

.info-card h4[b-7bxk6a5kzb] {
    margin: 0 0 1.5rem 0;
    color: #fff;
    font-size: 1.1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #3e3e42;
}

.info-grid[b-7bxk6a5kzb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item[b-7bxk6a5kzb] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item.full-width[b-7bxk6a5kzb] {
    grid-column: 1 / -1;
}

.info-label[b-7bxk6a5kzb] {
    font-size: 0.85rem;
    color: #a0a0a0;
    font-weight: 500;
}

.info-value[b-7bxk6a5kzb] {
    color: #fff;
    font-size: 1rem;
}

.info-value.small[b-7bxk6a5kzb] {
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.route-summary[b-7bxk6a5kzb] {
    padding-top: 1rem;
    border-top: 1px solid #3e3e42;
}

.route-stop[b-7bxk6a5kzb] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.route-stop-info[b-7bxk6a5kzb] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#truckRouteMap[b-7bxk6a5kzb] {
    background: #1e1e1e;
    border: 1px solid #3e3e42;
}

[b-7bxk6a5kzb] .mud-list-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    margin-bottom: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[b-7bxk6a5kzb] .mud-list-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.warehouse-link[b-7bxk6a5kzb] {
    color: #569cd6;
    text-decoration: none;
    font-weight: 500;
}

.warehouse-link:hover[b-7bxk6a5kzb] {
    color: #4ec9b0;
    text-decoration: underline;
}

.text-muted[b-7bxk6a5kzb] {
    color: #a0a0a0;
}

.loading-container[b-7bxk6a5kzb] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}
/* /Components/Pages/Trucks.razor.rz.scp.css */
.trucks-container[b-7nf60xfiwh] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-7nf60xfiwh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-header h3[b-7nf60xfiwh] {
    margin: 0;
    color: #fff;
}

.stats-grid[b-7nf60xfiwh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-7nf60xfiwh] {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d30 100%);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #3e3e42;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover[b-7nf60xfiwh] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stat-icon[b-7nf60xfiwh] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.stat-content[b-7nf60xfiwh] {
    flex: 1;
}

.stat-label[b-7nf60xfiwh] {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 0.25rem;
}

.stat-value[b-7nf60xfiwh] {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.table-container[b-7nf60xfiwh] {
    background: #252526;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #3e3e42;
}

.loading-container[b-7nf60xfiwh] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.truck-link[b-7nf60xfiwh], .warehouse-link[b-7nf60xfiwh] {
    color: #569cd6;
    text-decoration: none;
    font-weight: 500;
}

.truck-link:hover[b-7nf60xfiwh], .warehouse-link:hover[b-7nf60xfiwh] {
    color: #4ec9b0;
    text-decoration: underline;
}

.text-muted[b-7nf60xfiwh] {
    color: #a0a0a0;
}

.small[b-7nf60xfiwh] {
    font-size: 0.85rem;
}
/* /Components/Pages/WarehouseDetail.razor.rz.scp.css */
.warehouse-detail-container[b-0s4s313b1z] {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header[b-0s4s313b1z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header h3[b-0s4s313b1z] {
    margin: 0;
    color: rgba(255, 255, 255, 0.87);
}

.detail-layout[b-0s4s313b1z] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

.left-panel[b-0s4s313b1z],
.right-panel[b-0s4s313b1z] {
    min-height: 400px;
}

.detail-item[b-0s4s313b1z] {
    margin-bottom: 16px;
}

.detail-item:last-child[b-0s4s313b1z] {
    margin-bottom: 0;
}

.text-muted[b-0s4s313b1z] {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

/* Statistics Grid */
.stat-grid[b-0s4s313b1z] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card[b-0s4s313b1z] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-icon[b-0s4s313b1z] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.zones[b-0s4s313b1z] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.inventory[b-0s4s313b1z] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-content[b-0s4s313b1z] {
    flex: 1;
}

.stat-content h5[b-0s4s313b1z] {
    margin: 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.87);
}

#warehouseMap[b-0s4s313b1z] {
    border-radius: 8px;
    background: #2d2d2d;
}

/* Responsive layout */
@media (max-width: 1200px) {
    .detail-layout[b-0s4s313b1z] {
        grid-template-columns: 1fr;
    }

    .left-panel[b-0s4s313b1z] {
        min-height: auto;
    }

    .stat-grid[b-0s4s313b1z] {
        grid-template-columns: 1fr;
    }
}

/* MudBlazor overrides */
[b-0s4s313b1z] .mud-paper {
    background-color: #1e1e1e;
    color: rgba(255, 255, 255, 0.87);
}

[b-0s4s313b1z] .mud-table {
    background-color: transparent;
}

[b-0s4s313b1z] .mud-table-head {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-0s4s313b1z] .mud-table-cell {
    color: rgba(255, 255, 255, 0.87);
    border-color: rgba(255, 255, 255, 0.12);
}

[b-0s4s313b1z] .mud-table-row:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

[b-0s4s313b1z] .mud-table-row.mud-table-row-striped {
    background-color: rgba(255, 255, 255, 0.03);
}

[b-0s4s313b1z] .mud-input-outlined .mud-input-slot {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-0s4s313b1z] .mud-input-label {
    color: rgba(255, 255, 255, 0.6);
}

[b-0s4s313b1z] .mud-divider {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Truck Loading Tool */
.truck-info-grid[b-0s4s313b1z] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.truck-info-card[b-0s4s313b1z] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.truck-info-label[b-0s4s313b1z] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.truck-info-value[b-0s4s313b1z] {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.87);
}

.loaded-order-item[b-0s4s313b1z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 12px;
}

.loaded-order-item > div[b-0s4s313b1z] {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
}

.loaded-order-item > div > *[b-0s4s313b1z] {
    white-space: nowrap;
}

.loaded-order-item .mud-icon-button[b-0s4s313b1z] {
    flex-shrink: 0;
}

.order-link[b-0s4s313b1z] {
    color: #569cd6;
    text-decoration: none;
    font-weight: 500;
}

.order-link:hover[b-0s4s313b1z] {
    color: #4ec9b0;
    text-decoration: underline;
}

[b-0s4s313b1z] .mud-list-item {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    margin-bottom: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[b-0s4s313b1z] .mud-list-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

/* /Components/Pages/Warehouses.razor.rz.scp.css */
.warehouses-container[b-xwvfwiiuq5] {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header[b-xwvfwiiuq5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header h3[b-xwvfwiiuq5] {
    margin: 0;
    color: rgba(255, 255, 255, 0.87);
}

[b-xwvfwiiuq5] .mud-table {
    background-color: transparent;
}

[b-xwvfwiiuq5] .mud-table-head {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-xwvfwiiuq5] .mud-table-cell {
    color: rgba(255, 255, 255, 0.87);
    border-color: rgba(255, 255, 255, 0.12);
}

[b-xwvfwiiuq5] .mud-table-row:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

[b-xwvfwiiuq5] .mud-table-row.mud-table-row-striped {
    background-color: rgba(255, 255, 255, 0.03);
}
