/* _content/AIShippingChatAppV2/Components/Layout/EnhancedProgressIndicator.razor.rz.scp.css */
.ai-progress-container[b-aow396op7b] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin: 16px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.progress-content[b-aow396op7b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.main-spinner[b-aow396op7b] {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-ring[b-aow396op7b] {
    position: relative;
    width: 100%;
    height: 100%;
}

.ring[b-aow396op7b] {
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: spin-b-aow396op7b 2s linear infinite;
}

.ring:nth-child(1)[b-aow396op7b] {
    width: 100%;
    height: 100%;
    border-top-color: #3b82f6;
    animation-duration: 2s;
}

.ring:nth-child(2)[b-aow396op7b] {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: #8b5cf6;
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.ring:nth-child(3)[b-aow396op7b] {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: #06b6d4;
    animation-duration: 1s;
}

@keyframes spin-b-aow396op7b {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.current-step[b-aow396op7b] {
    text-align: center;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-icon[b-aow396op7b] {
    font-size: 2rem;
    animation: bounce-b-aow396op7b 2s infinite;
}

@keyframes bounce-b-aow396op7b {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.step-details[b-aow396op7b] {
    text-align: left;
}

.step-title[b-aow396op7b] {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 4px;
}

.step-description[b-aow396op7b] {
    font-size: 0.9rem;
    color: #6b7280;
    opacity: 0.8;
}

.progress-steps[b-aow396op7b] {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
}

.progress-step[b-aow396op7b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 80px;
    transition: all 0.3s ease;
}

.progress-step.completed[b-aow396op7b] {
    color: #10b981;
}

.progress-step.current[b-aow396op7b] {
    color: #3b82f6;
    transform: scale(1.05);
}

.progress-step.pending[b-aow396op7b] {
    color: #9ca3af;
}

.step-indicator[b-aow396op7b] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.progress-step.completed .step-indicator[b-aow396op7b] {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.progress-step.current .step-indicator[b-aow396op7b] {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    animation: pulse-ring-b-aow396op7b 2s ease-in-out infinite;
}

.progress-step.pending .step-indicator[b-aow396op7b] {
    background: #f3f4f6;
    border: 2px solid #d1d5db;
}

@keyframes pulse-ring-b-aow396op7b {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(59, 130, 246, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }
}

.check-icon[b-aow396op7b] {
    width: 18px;
    height: 18px;
}

.current-indicator[b-aow396op7b] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot[b-aow396op7b] {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot-b-aow396op7b 1.5s ease-in-out infinite;
}

@keyframes pulse-dot-b-aow396op7b {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.pending-dot[b-aow396op7b] {
    width: 8px;
    height: 8px;
    background: #9ca3af;
    border-radius: 50%;
}

.step-label[b-aow396op7b] {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.progress-bar[b-aow396op7b] {
    width: 100%;
    max-width: 600px;
    height: 4px;
    background: #f3f4f6;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill[b-aow396op7b] {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 2px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill[b-aow396op7b]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer-b-aow396op7b 2s infinite;
}

@keyframes shimmer-b-aow396op7b {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive design */
@media (max-width: 640px) {
    .ai-progress-container[b-aow396op7b] {
        padding: 16px;
        margin: 12px 0;
    }
    
    .progress-steps[b-aow396op7b] {
        gap: 12px;
    }
    
    .progress-step[b-aow396op7b] {
        min-width: 60px;
    }
    
    .step-label[b-aow396op7b] {
        font-size: 0.7rem;
    }
    
    .current-step[b-aow396op7b] {
        flex-direction: column;
        gap: 8px;
    }
}

/* _content/AIShippingChatAppV2/Components/Layout/LoadingSpinner.razor.rz.scp.css */
/* Used under CC0 license */

.lds-ellipsis[b-ryty89xzlq] {
    color: #666;
    animation: fade-in-b-ryty89xzlq 1s;
}

@keyframes fade-in-b-ryty89xzlq {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

    .lds-ellipsis[b-ryty89xzlq],
    .lds-ellipsis div[b-ryty89xzlq] {
        box-sizing: border-box;
    }

.lds-ellipsis[b-ryty89xzlq] {
    margin: auto;
    display: block;
    position: fixed; /* Changed from relative to fixed for page centering */
    width: 80px;
    height: 80px;
    /* Center positioning */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

    .lds-ellipsis div[b-ryty89xzlq] {
        position: absolute;
        top: 33.33333px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: currentColor;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1)[b-ryty89xzlq] {
            left: 8px;
            animation: lds-ellipsis1-b-ryty89xzlq 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2)[b-ryty89xzlq] {
            left: 8px;
            animation: lds-ellipsis2-b-ryty89xzlq 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3)[b-ryty89xzlq] {
            left: 32px;
            animation: lds-ellipsis2-b-ryty89xzlq 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4)[b-ryty89xzlq] {
            left: 56px;
            animation: lds-ellipsis3-b-ryty89xzlq 0.6s infinite;
        }

@keyframes lds-ellipsis1-b-ryty89xzlq {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3-b-ryty89xzlq {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2-b-ryty89xzlq {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
/* _content/AIShippingChatAppV2/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-3az63a5dvd] {
    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-3az63a5dvd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/AIShippingChatAppV2/Components/Layout/SurveyPrompt.razor.rz.scp.css */
.surveyContainer[b-ua3dfr2zaj] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9em;
    margin: 0.5rem auto -0.7rem auto;
    max-width: 1024px;
    color: var(--text-muted);
}

    .surveyContainer a[b-ua3dfr2zaj] {
        text-decoration: underline;
        color: var(--link-color, #3b82f6);
    }

    :root.dark-mode .surveyContainer a[b-ua3dfr2zaj] {
        color: #60a5fa;
    }

    .surveyContainer .tool-icon[b-ua3dfr2zaj] {
        margin-top: 0.15rem;
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
    }
/* _content/AIShippingChatAppV2/Components/Layout/ThemeToggle.razor.rz.scp.css */
.theme-toggle[b-f8j0ss6tgg] {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 100;
}

.theme-toggle button[b-f8j0ss6tgg] {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-color);
    transition: background-color 0.2s;
}

.theme-toggle button:hover[b-f8j0ss6tgg] {
    background-color: rgba(0, 0, 0, 0.1);
}

:root.dark-mode .theme-toggle button:hover[b-f8j0ss6tgg] {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-icon[b-f8j0ss6tgg] {
    width: 1.5rem;
    height: 1.5rem;
} 
/* _content/AIShippingChatAppV2/Components/Pages/Chat/AnalyticsVisualization.razor.rz.scp.css */
.analytics-result[b-xdoady7syw] {
    background: var(--surface-color, #fff);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.analytics-header h4[b-xdoady7syw] {
    margin: 0 0 8px 0;
    color: var(--text-primary, #1a1a1a);
    font-size: 1.25rem;
}

.analytics-description[b-xdoady7syw] {
    color: var(--text-secondary, #666);
    font-size: 0.9rem;
    margin: 0 0 16px 0;
}

.analytics-content[b-xdoady7syw] {
    margin: 20px 0;
}

.kpi-container[b-xdoady7syw] {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.5);
}

.kpi-value[b-xdoady7syw] {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.kpi-label[b-xdoady7syw] {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kpi-context[b-xdoady7syw] {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.analytics-table-container[b-xdoady7syw] {
    overflow-x: auto;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid rgba(75, 85, 99, 0.2);
}

.analytics-table[b-xdoady7syw] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.analytics-table thead[b-xdoady7syw] {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    z-index: 10;
}

.analytics-table th[b-xdoady7syw] {
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.analytics-table td[b-xdoady7syw] {
    padding: 12px;
    border-bottom: 1px solid rgba(75, 85, 99, 0.2);
    color: var(--text-primary, #1a1a1a);
}

.analytics-table tbody tr:hover[b-xdoady7syw] {
    background: rgba(59, 130, 246, 0.05);
}

.chart-wrapper[b-xdoady7syw] {
    padding: 20px;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(31, 41, 55, 0.95) 100%);
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.analytics-footer[b-xdoady7syw] {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-small[b-xdoady7syw] {
    padding: 8px 16px;
    border: 1px solid var(--border-color, #ddd);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-small:hover[b-xdoady7syw] {
    background: var(--hover-color, #f5f5f5);
    border-color: var(--primary-color, #0066cc);
}

.sql-query-display[b-xdoady7syw] {
    margin-top: 16px;
    background: #282c34;
    border-radius: 8px;
    padding: 16px;
    overflow-x: auto;
}

.sql-query-display pre[b-xdoady7syw] {
    margin: 0;
    color: #abb2bf;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.875rem;
}

.sql-query-display code[b-xdoady7syw] {
    color: #61dafb;
}

/* Column Selector Styles */
.column-selector[b-xdoady7syw] {
    margin: 1rem 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.column-selector-panel[b-xdoady7syw] {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.column-selector-label[b-xdoady7syw] {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary, #1a1a1a);
}

.column-checkboxes[b-xdoady7syw] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.column-checkbox[b-xdoady7syw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.column-checkbox:hover[b-xdoady7syw] {
    background: rgba(59, 130, 246, 0.1);
}

.column-checkbox input[type="checkbox"][b-xdoady7syw] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color, #3b82f6);
}

.column-checkbox span[b-xdoady7syw] {
    user-select: none;
    color: var(--text-primary, #1a1a1a);
}

.column-selector-actions[b-xdoady7syw] {
    display: flex;
    gap: 0.5rem;
}

/* _content/AIShippingChatAppV2/Components/Pages/Chat/Chat.razor.rz.scp.css */
.chat-page[b-8l59eyjb5e] {
    display: flex;
    flex-direction: column;
    height: 100vh !important; /* Full viewport height */
    background-color: var(--background-color); /* Remove purple gradient, use app background */
    width: 100vw !important; /* Force full viewport width */
    max-width: none !important; /* Override any max-width constraints */
    margin: 0 !important; /* Override any global margins */
    padding: 0 !important; /* Override any global padding */
    padding-bottom: 120px !important; /* Account for fixed input height */
    box-sizing: border-box;
    overflow: visible; /* Allow proper layout flow - FIXED */
    position: relative; /* Establish stacking context */
}

/* Ensure the main content area (excluding input) takes the right space */
.chat-page > div:first-child[b-8l59eyjb5e] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: relative;
}

.chat-container[b-8l59eyjb5e] {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; /* Allow it to grow and shrink, taking available space */
    min-height: 0; /* Important for flex child to shrink */
    background-color: var(--background-color);
    border-radius: 0; /* Remove border radius for edge-to-edge */
    margin: 0 !important; /* Override any global margins */
    padding: 0 !important; /* Remove any padding */
    box-shadow: none; /* Remove shadow */
    width: 100% !important; /* Force full width */
    max-width: none !important; /* Override any max-width constraints */
    box-sizing: border-box;
    overflow-y: auto; /* Make it scrollable */
    overflow-x: hidden; /* Prevent horizontal overflow */
    position: relative;
    z-index: 1; /* Ensure it's below the suggestions */
}

/* Remove this rule as it's causing the input to push to bottom incorrectly */
/* .chat-container > :last-child {
    margin-top: auto !important;
    margin-bottom: 0 !important;
} */

/* Responsive adjustments - add bottom padding for fixed input */
@media (max-width: 768px) {
    .chat-page[b-8l59eyjb5e] {
        padding-bottom: 110px !important; /* Account for tablet input height */
    }
    .chat-container[b-8l59eyjb5e] {
        /* No specific height adjustments needed with flexbox */
    }
}

@media (max-width: 480px) {
    .chat-page[b-8l59eyjb5e] {
        padding-bottom: 100px !important; /* Account for mobile input height */
    }
    .chat-container[b-8l59eyjb5e] {
        /* No specific height adjustments needed with flexbox */
    }
}
/* _content/AIShippingChatAppV2/Components/Pages/Chat/ChatCitation.razor.rz.scp.css */
.citation[b-9rtkhnhj5p] {
    display: inline-flex;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-top: 1rem;
    margin-right: 1rem;
    border-bottom: 2px solid var(--citation-border, #a770de);
    gap: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    background-color: var(--citation-bg, #ffffff);
    color: var(--citation-text, inherit);
}

    .citation[href]:hover[b-9rtkhnhj5p] {
        outline: 1px solid var(--citation-hover-outline, #865cb1);
    }

    .citation svg[b-9rtkhnhj5p] {
        width: 1.5rem;
        height: 1.5rem;
        color: var(--citation-icon, currentColor);
    }

    .citation:active[b-9rtkhnhj5p] {
        background-color: var(--citation-active-bg, rgba(0,0,0,0.05));
    }

:root.dark-mode .citation[b-9rtkhnhj5p] {
    background-color: #2a2a3a;
    color: var(--text-color);
    border-bottom-color: #8c5cbd;
}

:root.dark-mode .citation[href]:hover[b-9rtkhnhj5p] {
    outline-color: #a979e6;
}

:root.dark-mode .citation:active[b-9rtkhnhj5p] {
    background-color: rgba(255,255,255,0.1);
}

.citation-content[b-9rtkhnhj5p] {
    display: flex;
    flex-direction: column;
}

.citation-file[b-9rtkhnhj5p] {
    font-weight: 600;
}
/* _content/AIShippingChatAppV2/Components/Pages/Chat/ChatHeader.razor.rz.scp.css */
.chat-header-container[b-cf40z30dbd] {
    top: 0; 
    padding: 1.5rem 2rem 0 2rem; 
    margin-bottom: 0;
}

.chat-header-controls[b-cf40z30dbd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    padding-bottom: 1rem;
    gap: 1rem;
    margin-bottom: 0;
    position: relative;
}

/* Burger Menu Button - Enhanced Responsiveness */
.burger-menu-button[b-cf40z30dbd] {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.15s ease;
    z-index: 1001;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.burger-menu-button:hover[b-cf40z30dbd] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.burger-menu-button:active[b-cf40z30dbd] {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transition: all 0.1s ease;
}

/* Hamburger Icon */
.burger-icon[b-cf40z30dbd] {
    width: 20px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-icon span[b-cf40z30dbd] {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-icon.open span:nth-child(1)[b-cf40z30dbd] {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-icon.open span:nth-child(2)[b-cf40z30dbd] {
    opacity: 0;
}

.burger-icon.open span:nth-child(3)[b-cf40z30dbd] {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop header sections */
.desktop-header-sections[b-cf40z30dbd] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    width: 100%;
}

.header-section[b-cf40z30dbd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-left[b-cf40z30dbd] {
    flex: 1;
    justify-content: flex-start;
    min-width: 0; /* Prevent flex item from overflowing */
}

.header-center[b-cf40z30dbd] {
    flex: 0 0 auto;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.header-right[b-cf40z30dbd] {
    flex: 1;
    justify-content: flex-end;
    min-width: 0; /* Prevent flex item from overflowing */
}

/* Mobile burger menu overlay */
.burger-menu-overlay[b-cf40z30dbd] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.burger-menu-overlay.open[b-cf40z30dbd] {
    opacity: 1;
    visibility: visible;
}

/* Mobile burger menu */
.burger-menu[b-cf40z30dbd] {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    overflow: visible;
}

.burger-menu.open[b-cf40z30dbd] {
    right: 0;
}

.burger-menu-content[b-cf40z30dbd] {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    overflow-y: auto;
    overflow-x: visible;
}

.burger-menu-item[b-cf40z30dbd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    width: 100%;
    text-align: left;
}

.burger-menu-item:hover[b-cf40z30dbd] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-2px);
}

.burger-menu-item.enabled[b-cf40z30dbd] {
    background: rgba(34, 197, 94, 0.2) !important;
    border-color: rgba(34, 197, 94, 0.4) !important;
    color: #22c55e !important;
}

.burger-menu-item.enabled:hover[b-cf40z30dbd] {
    background: rgba(34, 197, 94, 0.3) !important;
    border-color: rgba(34, 197, 94, 0.5) !important;
}

.menu-icon[b-cf40z30dbd] {
    width: 1.25rem !important;
    height: 1.25rem !important;
    flex-shrink: 0;
}

/* Burger Menu Section Label */
.burger-menu-section-label[b-cf40z30dbd] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 0.5rem 0.5rem;
    margin-top: 0.5rem;
}

/* Burger Menu Mode Toggle */
.burger-mode-toggle-container[b-cf40z30dbd] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.burger-mode-button[b-cf40z30dbd] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    width: 100%;
    text-align: left;
}

.burger-mode-button:hover[b-cf40z30dbd] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-3px);
}

.burger-mode-button.active[b-cf40z30dbd] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.burger-mode-button.active:hover[b-cf40z30dbd] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(139, 92, 246, 0.4) 100%);
    border-color: rgba(59, 130, 246, 0.8);
}

.mode-icon-large[b-cf40z30dbd] {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.mode-info[b-cf40z30dbd] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.mode-name[b-cf40z30dbd] {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.mode-description[b-cf40z30dbd] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Mobile header section */
.mobile-header-section[b-cf40z30dbd] {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-dashboard-section[b-cf40z30dbd] {
    flex: 1;
}

/* User section in burger menu */
.burger-menu-user-section[b-cf40z30dbd] {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.burger-menu-user-info[b-cf40z30dbd] {
    margin-bottom: 0.75rem;
}

.burger-menu-user-email[b-cf40z30dbd] {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0 1rem;
    text-align: center;
}

.logout-item[b-cf40z30dbd] {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
    color: #ef4444 !important;
}

.logout-item:hover[b-cf40z30dbd] {
    background: rgba(239, 68, 68, 0.3) !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
}

/* Override btn-default for header buttons to ensure consistency */
.chat-header-controls .btn-default[b-cf40z30dbd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-header-controls .btn-default:hover[b-cf40z30dbd] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.chat-header-controls .btn-default svg[b-cf40z30dbd] {
    width: 1rem !important;
    height: 1rem !important;
    flex-shrink: 0;
}

/* TTS Button specific styling */
.tts-toggle-button.enabled[b-cf40z30dbd] {
    background: rgba(34, 197, 94, 0.2) !important;
    border-color: rgba(34, 197, 94, 0.4) !important;
    color: #22c55e !important;
}

.tts-toggle-button.enabled:hover[b-cf40z30dbd] {
    background: rgba(34, 197, 94, 0.3) !important;
    border-color: rgba(34, 197, 94, 0.5) !important;
}

/* User info styling */
.user-info[b-cf40z30dbd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-email[b-cf40z30dbd] {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive design */
@media (min-width: 768px) {
    .chat-header-container[b-cf40z30dbd] {
        position: sticky;
    }
    
    /* Hide mobile sections on desktop */
    .mobile-header-section[b-cf40z30dbd] {
        display: none !important;
    }
    
    /* Show desktop sections on desktop */
    .desktop-header-sections[b-cf40z30dbd] {
        display: flex;
    }
}

@media (max-width: 768px) {
    .chat-header-container[b-cf40z30dbd] {
        padding: 1rem 1rem 0 1rem;
    }
    
    /* Show burger menu button - Grid positioned */
    .burger-menu-button[b-cf40z30dbd] {
        display: block;
        grid-column: 1;
        justify-self: start;
        flex-shrink: 0;
        min-width: 48px;
        min-height: 48px;
        padding: 0.75rem;
        border-radius: 12px;
        border-width: 2px;
    }
    
    /* Show mobile header section - Grid Layout */
    .mobile-header-section[b-cf40z30dbd] {
        display: grid !important;
        grid-template-columns: 48px 1fr 48px;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
        width: 100%;
    }
    
    /* Hide desktop header sections */
    .desktop-header-sections[b-cf40z30dbd] {
        display: none !important;
    }
    
    /* Mobile layout: burger left, dashboard center */
    .chat-header-controls[b-cf40z30dbd] {
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 1rem 0;
        position: relative;
    }
    
    /* Mobile dashboard section - Grid centered */
    .mobile-dashboard-section[b-cf40z30dbd] {
        grid-column: 2;
        justify-self: center;
        width: 100%;
        max-width: 280px;
    }
    
    /* Override DashboardSelector styles for mobile - High specificity */
    .chat-header-container .mobile-header-section .mobile-dashboard-section .knowledge-base-selector-container[b-cf40z30dbd] {
        margin-bottom: 0 !important;
        width: 100% !important;
    }
    
    .chat-header-container .mobile-header-section .mobile-dashboard-section .knowledge-base-selector[b-cf40z30dbd] {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.375rem 0.5rem !important;
        gap: 0.5rem !important;
        flex: 1 !important;
        overflow: hidden !important;
    }
    
    .chat-header-container .mobile-header-section .mobile-dashboard-section .knowledge-base-label[b-cf40z30dbd] {
        font-size: 0.75rem !important;
        gap: 0.25rem !important;
        white-space: nowrap !important;
        display: none !important; /* Hide label completely on mobile */
    }
    
    .chat-header-container .mobile-header-section .mobile-dashboard-section .knowledge-base-select[b-cf40z30dbd] {
        font-size: 0.8rem !important;
        min-width: 0 !important;
        flex: 1 !important;
    }
    
    .chat-header-container .mobile-header-section .mobile-dashboard-section .knowledge-base-info[b-cf40z30dbd] {
        display: none !important; /* Hide collection count on mobile */
    }
    
    /* Hide refresh button on mobile */
    .chat-header-container .mobile-header-section .mobile-dashboard-section .refresh-button[b-cf40z30dbd] {
        display: none !important;
    }
    
    /* Ensure controls container doesn't overflow */
    .chat-header-container .mobile-header-section .mobile-dashboard-section .knowledge-base-selector-controls[b-cf40z30dbd] {
        flex: 1 !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .chat-header-container[b-cf40z30dbd] {
        padding: 0.75rem 0.75rem 0 0.75rem;
    }
    
    .burger-menu[b-cf40z30dbd] {
        width: 100%;
        right: -100%;
    }
    
    .burger-menu-content[b-cf40z30dbd] {
        padding: 1.5rem 1rem;
    }
    
    /* Extra mobile optimizations for very small screens */
    .mobile-dashboard-section[b-cf40z30dbd] {
        max-width: calc(100% - 100px);
    }
    
    .burger-menu-button[b-cf40z30dbd] {
        min-width: 44px;
        min-height: 44px;
        padding: 0.625rem;
    }
    
    .chat-header-controls[b-cf40z30dbd] {
        gap: 0;
        padding: 0.75rem 0;
    }
}

/* Language and Style Selectors */
.language-selector[b-cf40z30dbd],
.response-style-selector[b-cf40z30dbd] {
    position: relative;
    display: inline-block;
}

.language-button[b-cf40z30dbd],
.style-button[b-cf40z30dbd] {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    min-width: auto;
    white-space: nowrap;
}

.language-flag[b-cf40z30dbd] {
    font-size: 1.1em;
    line-height: 1;
}

.language-code[b-cf40z30dbd] {
    font-size: 0.875rem;
    font-weight: 500;
}

.style-icon[b-cf40z30dbd] {
    font-size: 1.1em;
    line-height: 1;
}

.style-name[b-cf40z30dbd] {
    font-size: 0.875rem;
    font-weight: 500;
}

.dropdown-icon[b-cf40z30dbd] {
    width: 16px;
    height: 16px;
    margin-left: 0.25rem;
    transition: transform 0.2s ease;
}

.language-button[aria-expanded="true"] .dropdown-icon[b-cf40z30dbd],
.style-button[aria-expanded="true"] .dropdown-icon[b-cf40z30dbd] {
    transform: rotate(180deg);
}

/* Clean dropdown styling */
.language-selector[b-cf40z30dbd],
.response-style-selector[b-cf40z30dbd] {
    position: relative;
}

.dropdown-menu[b-cf40z30dbd] {
    /* Hide original dropdown since we use JavaScript overlay */
    display: none !important;
}

.dropdown-item[b-cf40z30dbd] {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: background-color 0.15s ease !important;
    color: #333 !important;
    font-size: 0.875rem !important;
    border-radius: 4px !important;
    margin: 2px 4px !important;
    font-family: inherit !important;
    pointer-events: auto !important;
    z-index: 999999 !important;
    position: relative !important;
}

.dropdown-item:hover[b-cf40z30dbd] {
    background-color: rgba(59, 130, 246, 0.1);
}

.dropdown-item.active[b-cf40z30dbd] {
    background-color: rgba(59, 130, 246, 0.15);
    color: #1d4ed8;
    font-weight: 500;
}

.language-flag[b-cf40z30dbd],
.style-icon[b-cf40z30dbd] {
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.language-name[b-cf40z30dbd],
.style-name[b-cf40z30dbd] {
    font-weight: 500;
}

.language-native[b-cf40z30dbd] {
    color: #666;
    font-size: 0.8rem;
    margin-left: 4px;
}

.style-info[b-cf40z30dbd] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.style-description[b-cf40z30dbd] {
    color: #666;
    font-size: 0.75rem;
}

.dropdown-item:focus[b-cf40z30dbd] {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: -2px;
}

.dropdown-item.active[b-cf40z30dbd] {
    background-color: rgba(59, 130, 246, 0.15);
    color: #1d4ed8;
    font-weight: 500;
}

.dropdown-item .language-flag[b-cf40z30dbd],
.dropdown-item .style-icon[b-cf40z30dbd] {
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}

.dropdown-item .language-name[b-cf40z30dbd],
.dropdown-item .style-name[b-cf40z30dbd] {
    font-weight: 500;
}

.dropdown-item .language-native[b-cf40z30dbd] {
    color: #666;
    font-size: 0.8rem;
}

.style-info[b-cf40z30dbd] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.style-description[b-cf40z30dbd] {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Dark mode support for dropdown items */
:root.dark-mode .dropdown-menu[b-cf40z30dbd] {
    background: rgba(31, 41, 55, 0.98);
    border-color: rgba(255, 255, 255, 0.1);
}

:root.dark-mode .dropdown-item[b-cf40z30dbd] {
    color: #e5e7eb;
}

:root.dark-mode .dropdown-item:hover[b-cf40z30dbd] {
    background-color: rgba(59, 130, 246, 0.2);
}

:root.dark-mode .dropdown-item:active[b-cf40z30dbd] {
    background-color: rgba(59, 130, 246, 0.3);
}

:root.dark-mode .dropdown-item.active[b-cf40z30dbd] {
    background-color: rgba(59, 130, 246, 0.25);
    color: #60a5fa;
}

:root.dark-mode .dropdown-item .language-native[b-cf40z30dbd],
:root.dark-mode .style-description[b-cf40z30dbd] {
    color: #9ca3af;
}

/* Mobile selector styling in burger menu */
.language-selector-mobile[b-cf40z30dbd],
.style-selector-mobile[b-cf40z30dbd] {
    justify-content: flex-start !important;
    position: relative;
    margin-bottom: 0.75rem;
    z-index: 10;
    overflow: visible;
}

.mobile-selector-text[b-cf40z30dbd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: inherit;
}

/* Responsive adjustments for language and style selectors */
@media (max-width: 768px) {
    .language-selector[b-cf40z30dbd],
    .response-style-selector[b-cf40z30dbd] {
        display: none;
    }
}

@media (max-width: 1200px) {
    .language-button .language-code[b-cf40z30dbd],
    .style-button .style-name[b-cf40z30dbd] {
        display: none;
    }
    
    .language-button[b-cf40z30dbd],
    .style-button[b-cf40z30dbd] {
        min-width: 40px;
        justify-content: center;
        padding: 0.5rem;
    }
}

/* Chat Mode Toggle */
.chat-mode-toggle[b-cf40z30dbd] {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-left: 20px;
    backdrop-filter: blur(8px);
    position: relative;
}

.chat-mode-toggle[b-cf40z30dbd]::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.mode-button[b-cf40z30dbd] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    white-space: nowrap;
}

.mode-button:hover[b-cf40z30dbd] {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.mode-button.active[b-cf40z30dbd] {
    background: rgba(255, 255, 255, 0.95);
    color: #1e3a8a;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mode-icon[b-cf40z30dbd] {
    font-size: 1.1rem;
    line-height: 1;
}

.mode-label[b-cf40z30dbd] {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .chat-mode-toggle[b-cf40z30dbd] {
        display: none; /* Hide in mobile burger menu area, can be added to burger menu if needed */
    }
}

@media (max-width: 1024px) {
    .mode-label[b-cf40z30dbd] {
        display: none; /* Hide label text on medium screens, keep icons only */
    }
    
    .mode-button[b-cf40z30dbd] {
        padding: 8px 10px;
        justify-content: center;
    }
}
/* _content/AIShippingChatAppV2/Components/Pages/Chat/ChatInput.razor.rz.scp.css */
.chat-input-form[b-0icw3qvgm4] {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: var(--background-color) !important;
    z-index: 9999 !important;
    box-sizing: border-box !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
    transform: none !important;
    transition: none !important;
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

/* Override any global input-area or chat-input-container styles */
.chat-input-form[b-0icw3qvgm4],
.chat-input-form.input-area[b-0icw3qvgm4],
.chat-input-form.chat-input-container[b-0icw3qvgm4] {
    position: fixed !important;
    bottom: 0 !important;
    border-radius: 0 !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1) !important;
    border: none !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
    transition: none !important;
    z-index: 9999 !important;
}

.input-box[b-0icw3qvgm4] {
    display: flex;
    flex-direction: column; 
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1rem 2rem 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, outline 0.2s ease;
    box-sizing: border-box;
}

.input-box:focus-within[b-0icw3qvgm4] {
    outline: 2px solid var(--spinner-border-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

textarea[b-0icw3qvgm4] {
    resize: none;
    border: none;
    outline: none;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.5;
    background: transparent;
    color: var(--text-color);
    width: 100%;
    box-sizing: border-box;
    min-height: 1.5rem;
    max-height: 8rem;
    font-family: inherit;
}

textarea[b-0icw3qvgm4]::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

textarea:placeholder-shown + .tools[b-0icw3qvgm4] {
    --send-button-color: var(--text-muted);
}

.tools[b-0icw3qvgm4] {
    display: flex; 
    margin-top: 1rem; 
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.tool-icon[b-0icw3qvgm4] {
    width: 1.25rem;
    height: 1.25rem;
}

.send-button[b-0icw3qvgm4] {
    color: var(--send-button-color, #0078d4);
    margin-left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.send-button:hover:not(:disabled)[b-0icw3qvgm4] {
    background-color: rgba(0, 120, 212, 0.1);
    color: #005a9e;
    transform: scale(1.05);
}

:root.dark-mode .send-button:hover:not(:disabled)[b-0icw3qvgm4] {
    background-color: rgba(0, 120, 212, 0.2);
    color: #4ca8ff;
}

.send-button:disabled[b-0icw3qvgm4] {
    color: #cccccc;
    cursor: not-allowed;
}

:root.dark-mode .send-button:disabled[b-0icw3qvgm4] {
    color: #555555;
}

.attach[b-0icw3qvgm4] {
    background-color: var(--input-bg);
    border-style: dashed;
    color: var(--text-muted);
    border-color: var(--text-muted);
    padding: 3px 8px;
}

.attach:hover[b-0icw3qvgm4] {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

:root.dark-mode .attach:hover[b-0icw3qvgm4] {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .input-box[b-0icw3qvgm4] {
        margin: 0.875rem 1.5rem 1.25rem 1.5rem;
        padding: 0.875rem 1rem;
    }
    
    .tools[b-0icw3qvgm4] {
        margin-top: 0.875rem;
        gap: 0.375rem;
    }
    
    .send-button[b-0icw3qvgm4] {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .input-box[b-0icw3qvgm4] {
        margin: 0.75rem 1rem 1rem 1rem;
        padding: 0.75rem 0.875rem;
    }
    
    .tools[b-0icw3qvgm4] {
        margin-top: 0.75rem;
        gap: 0.25rem;
    }
    
    .send-button[b-0icw3qvgm4] {
        width: 32px;
        height: 32px;
    }
    
    .tool-icon[b-0icw3qvgm4] {
        width: 1rem;
        height: 1rem;
    }
}

/* Status Indicators inside Input Box */
.input-status-indicators[b-0icw3qvgm4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-right: 0.75rem;
    opacity: 0.8;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

:root.dark-mode .input-status-indicators[b-0icw3qvgm4] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.input-status-indicators .status-item[b-0icw3qvgm4] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.input-status-indicators .status-icon[b-0icw3qvgm4] {
    font-size: 0.85em;
    line-height: 1;
}

.input-status-indicators .status-text[b-0icw3qvgm4] {
    font-weight: 500;
    white-space: nowrap;
}

.input-status-indicators .status-separator[b-0icw3qvgm4] {
    color: var(--text-muted);
    opacity: 0.6;
    font-weight: bold;
    margin: 0 0.125rem;
}

/* Adjust tools layout to accommodate indicators */
.tools[b-0icw3qvgm4] {
    display: flex; 
    margin-top: 1rem; 
    align-items: center;
    justify-content: space-between; /* Changed from flex-end to space-between */
    gap: 0.5rem;
}

/* Mobile responsiveness for input status indicators */
@media (max-width: 768px) {
    .input-status-indicators[b-0icw3qvgm4] {
        font-size: 0.7rem;
        gap: 0.375rem;
        padding: 0.2rem 0.4rem;
    }
    
    .input-status-indicators .status-item[b-0icw3qvgm4] {
        gap: 0.2rem;
    }
    
    .input-status-indicators .status-text[b-0icw3qvgm4] {
        display: none; /* Hide text on mobile, keep icons only */
    }
}

@media (max-width: 480px) {
    .input-status-indicators[b-0icw3qvgm4] {
        font-size: 0.65rem;
        gap: 0.25rem;
        padding: 0.15rem 0.3rem;
    }
}
/* _content/AIShippingChatAppV2/Components/Pages/Chat/ChatMessageItem.razor.rz.scp.css */
.user-message[b-6egtzjeirs] {
    background: var(--user-message-bg, rgb(182 215 232));
    align-self: flex-end;
    min-width: 25%;
    max-width: calc(100% - 4rem);
    padding: 0.5rem 1.25rem;
    border-radius: 0.25rem; 
    color: var(--user-message-text, #1F2937); 
    white-space: pre-wrap;
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}

:root.dark-mode .user-message[b-6egtzjeirs] {
    background: #2d5474;
    color: #e5e7eb;
}

.assistant-message[b-6egtzjeirs], .assistant-search[b-6egtzjeirs] {
    display: grid;
    grid-template-rows: min-content;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.25rem;
    margin-left: 2rem !important;
    margin-right: 2rem !important;
    max-width: calc(100% - 4rem) !important;
}

.assistant-message-header[b-6egtzjeirs] {
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.assistant-message-text[b-6egtzjeirs] {
    grid-column-start: 2;
    color: var(--text-color);
    padding: 0.75rem;
    background-color: var(--assistant-message-bg, rgba(0, 0, 0, 0.03));
    border-radius: 0.25rem;
}

:root.dark-mode .assistant-message-text[b-6egtzjeirs] {
    background-color: rgba(255, 255, 255, 0.05);
}

.assistant-message-icon[b-6egtzjeirs] {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    border-radius: 9999px; 
    width: 1.5rem; 
    height: 1.5rem; 
    color: #ffffff; 
    background: var(--assistant-icon-bg, #9b72ce);
}

:root.dark-mode .assistant-message-icon[b-6egtzjeirs] {
    background: #7050a0;
}

.assistant-message-icon svg[b-6egtzjeirs] {
    width: 1rem; 
    height: 1rem; 
}

.assistant-search[b-6egtzjeirs] {
    font-size: 0.875rem;
    line-height: 1.25rem; 
    color: var(--text-color);
    padding: 0.375rem;
    background-color: var(--search-message-bg, rgba(0, 0, 0, 0.02));
    border-radius: 0.25rem;
    margin-left: 2rem !important;
    margin-right: 2rem !important;
    max-width: calc(100% - 4rem) !important;
}

:root.dark-mode .assistant-search[b-6egtzjeirs] {
    background-color: rgba(255, 255, 255, 0.03);
}

.assistant-search-icon[b-6egtzjeirs] {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 1.5rem; 
    height: 1.5rem; 
    color: var(--text-color);
}

.assistant-search-icon svg[b-6egtzjeirs] {
    width: 1rem; 
    height: 1rem; 
}

.assistant-search-content[b-6egtzjeirs] {
    align-content: center;
    color: var(--text-color);
}

.assistant-search-phrase[b-6egtzjeirs] {
    font-weight: 600;
    color: var(--text-color);
}

/* Default styling for markdown-formatted assistant messages */
[b-6egtzjeirs] ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

[b-6egtzjeirs] ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
}

[b-6egtzjeirs] li {
    margin: 0.5rem 0;
}

[b-6egtzjeirs] strong {
    font-weight: 600;
}

[b-6egtzjeirs] h3 {
    margin: 1rem 0;
    font-weight: 600;
}

[b-6egtzjeirs] p + p {
    margin-top: 1rem;
}

[b-6egtzjeirs] table {
    margin: 1rem 0;
}

[b-6egtzjeirs] th {
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

[b-6egtzjeirs] th, [b-6egtzjeirs] td {
    padding: 0.1rem 0.5rem;
}

[b-6egtzjeirs] th, [b-6egtzjeirs] tr:nth-child(even) {
    background-color: var(--table-alt-bg, rgba(0, 0, 0, 0.05));
}

:root.dark-mode[b-6egtzjeirs]  th, :root.dark-mode[b-6egtzjeirs]  tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

[b-6egtzjeirs] code {
    background-color: var(--code-bg, rgba(0, 0, 0, 0.05));
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-family: monospace;
}

:root.dark-mode[b-6egtzjeirs]  code {
    background-color: rgba(255, 255, 255, 0.1);
}

.tts-speak-button[b-6egtzjeirs] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    opacity: 0.7;
    transition: all 0.2s ease;
    color: var(--text-color);
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
}

.tts-speak-button:hover[b-6egtzjeirs] {
    opacity: 1;
    background-color: var(--button-hover-bg, rgba(0, 0, 0, 0.1));
    transform: scale(1.05);
}

:root.dark-mode .tts-speak-button:hover[b-6egtzjeirs] {
    background-color: rgba(255, 255, 255, 0.1);
}

.tts-speak-button svg[b-6egtzjeirs] {
    width: 16px;
    height: 16px;
    display: block;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .user-message[b-6egtzjeirs] {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
        max-width: calc(100% - 3rem);
    }
    
    .assistant-message[b-6egtzjeirs], .assistant-search[b-6egtzjeirs] {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
        max-width: calc(100% - 3rem) !important;
    }
}

@media (max-width: 480px) {
    .user-message[b-6egtzjeirs] {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
        max-width: calc(100% - 2rem);
    }
    
    .assistant-message[b-6egtzjeirs], .assistant-search[b-6egtzjeirs] {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
        max-width: calc(100% - 2rem) !important;
    }
}
/* _content/AIShippingChatAppV2/Components/Pages/Chat/ChatMessageList.razor.rz.scp.css */
/* Override global app.css styles that conflict with our layout */
.chat-page .message-list-container[b-2r2gs4veyg],
chat-messages.message-list[b-2r2gs4veyg] {
    margin: 0 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow-y: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    position: relative !important;
    background-color: var(--background-color) !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
}

.message-list-container[b-2r2gs4veyg] {
    margin: 0 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow-y: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    position: relative !important;
    background-color: var(--background-color) !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
}

/* Target the actual chat-messages element that contains all message items */
chat-messages[b-2r2gs4veyg] {
    display: flex !important; 
    flex-direction: column !important; 
    gap: 1.25rem !important;
    /* 
    Normal bottom padding since suggestions are in normal flow:
    Just need enough space for visual breathing room
    */
    padding: 1.5rem 2rem 2rem 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: 100% !important;
    max-height: none !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    scroll-behavior: smooth !important;
    /* Ensure proper scrolling on mobile devices */
    -webkit-overflow-scrolling: touch !important;
}

/* Force spacing on individual message components */
chat-messages > *[b-2r2gs4veyg] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: calc(100% - 0rem) !important;
}

/* Specifically target user and assistant messages */
.user-message[b-2r2gs4veyg] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: calc(100% - 0rem) !important;
}

.assistant-message[b-2r2gs4veyg] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.message-list[b-2r2gs4veyg] {
    display: flex !important; 
    flex-direction: column !important; 
    gap: 1.25rem !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: 100% !important;
    max-height: none !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.no-messages[b-2r2gs4veyg] {
    text-align: center !important;
    font-size: 1.25rem !important;
    color: var(--text-muted) !important;
    margin: auto 0 !important;
    /* Reduced bottom padding to match chat-messages */
    padding: 2rem 2rem 2rem 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    min-height: auto !important;
    max-height: none !important;
}

chat-messages[b-2r2gs4veyg] >  div:last-of-type {
    margin-bottom: 1rem !important;
}

/* Override global media query conflicts */
@media (max-width: 768px) {
    .message-list-container[b-2r2gs4veyg] {
        margin: 0 !important;
    }
    
    chat-messages[b-2r2gs4veyg] {
        /* Normal bottom padding for tablet */
        padding: 1.5rem 1.5rem 1.5rem 1.5rem !important;
    }
    
    .no-messages[b-2r2gs4veyg] {
        padding: 2rem 1.5rem 1.5rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    chat-messages[b-2r2gs4veyg] {
        /* Normal bottom padding for mobile */
        padding: 1rem 1rem 1rem 1rem !important;
    }
    
    .no-messages[b-2r2gs4veyg] {
        padding: 2rem 1rem 1rem 1rem !important;
    }
}

/* Improved scrolling for different browser engines */
@supports (-webkit-overflow-scrolling: touch) {
    chat-messages[b-2r2gs4veyg] {
        -webkit-overflow-scrolling: touch !important;
    }
}

/* Ensure smooth scrolling behavior on modern browsers */
@media (prefers-reduced-motion: no-preference) {
    chat-messages[b-2r2gs4veyg] {
        scroll-behavior: smooth !important;
    }
}
/* _content/AIShippingChatAppV2/Components/Pages/Chat/ChatSuggestions.razor.rz.scp.css */
/* Mobile suggestions toggle button */
.mobile-suggestions-toggle[b-vvdarud7m1] {
    display: none;
    padding: 0.25rem 1rem;
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 501;
}

.btn-suggestions-toggle[b-vvdarud7m1] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    min-height: 2rem;
}

.btn-suggestions-toggle:hover[b-vvdarud7m1] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.toggle-icon[b-vvdarud7m1] {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.toggle-icon.rotated[b-vvdarud7m1] {
    transform: rotate(180deg);
}

.toggle-text[b-vvdarud7m1] {
    font-weight: 500;
    font-size: 0.8125rem;
}

.suggestions[b-vvdarud7m1] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 2rem 0.5rem 2rem; /* Small margins for spacing */
    padding: 0.5rem 0;
    background-color: var(--background-color);
    z-index: 500; /* Lower than input but still visible */
    white-space: nowrap;
    position: relative; /* Back to normal document flow */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    min-height: 3rem;
    box-sizing: border-box;
    flex-shrink: 0; /* Prevent shrinking */
    transition: all 0.3s ease;
}

.suggestions-loading[b-vvdarud7m1] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.loading-text[b-vvdarud7m1] {
    opacity: 0.7;
    animation: pulse-b-vvdarud7m1 1.5s ease-in-out infinite;
}

@keyframes pulse-b-vvdarud7m1 {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

/* Remove the gradient line since we now have actual borders */
.suggestions[b-vvdarud7m1]::before {
    display: none;
}

@media (max-width: 768px) {
    /* Show mobile toggle button */
    .mobile-suggestions-toggle[b-vvdarud7m1] {
        display: block;
    }

    /* Hide suggestions by default on mobile */
    .suggestions.mobile-hidden[b-vvdarud7m1] {
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0 1.5rem;
        border: none;
        min-height: 0;
        opacity: 0;
        transform: translateY(-10px);
    }

    /* Show suggestions when toggled on mobile */
    .suggestions.mobile-visible[b-vvdarud7m1] {
        max-height: 300px;
        opacity: 1;
        transform: translateY(0);
        margin: 0.375rem 1.5rem 0.375rem 1.5rem;
        gap: 0.375rem;
        padding: 0.5rem 0;
        min-height: 2.75rem;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 480px) {
    .mobile-suggestions-toggle[b-vvdarud7m1] {
        padding: 0.2rem 0.75rem;
    }

    .suggestions.mobile-hidden[b-vvdarud7m1] {
        margin: 0 1rem;
    }

    .suggestions.mobile-visible[b-vvdarud7m1] {
        margin: 0.25rem 1rem 0.25rem 1rem;
        gap: 0.25rem;
        flex-direction: column;
        align-items: stretch;
        padding: 0.375rem 0;
        min-height: 2.5rem;
    }
}

/* Desktop behavior - always show suggestions */
@media (min-width: 769px) {
    .mobile-suggestions-toggle[b-vvdarud7m1] {
        display: none;
    }

    .suggestions.mobile-hidden[b-vvdarud7m1],
    .suggestions.mobile-visible[b-vvdarud7m1] {
        /* Reset mobile styles */
        max-height: none;
        opacity: 1;
        transform: none;
        overflow: visible;
    }
}
/* _content/AIShippingChatAppV2/Components/Pages/Chat/DashboardSelector.razor.rz.scp.css */
.knowledge-base-selector-container[b-rdwhxd91qs] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.knowledge-base-selector[b-rdwhxd91qs] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    min-width: 300px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.knowledge-base-label[b-rdwhxd91qs] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
}

.knowledge-base-icon[b-rdwhxd91qs] {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.knowledge-base-select[b-rdwhxd91qs] {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 0.875rem;
    min-width: 0;
}

.knowledge-base-select:focus[b-rdwhxd91qs] {
    outline: none;
}

.knowledge-base-select option[b-rdwhxd91qs] {
    background-color: var(--input-bg);
    color: var(--text-color);
}

.knowledge-base-info[b-rdwhxd91qs] {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    background-color: var(--background-color);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.knowledge-base-loading[b-rdwhxd91qs] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.spinner[b-rdwhxd91qs] {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--text-color);
    border-radius: 50%;
    animation: spin-b-rdwhxd91qs 1s linear infinite;
}

@keyframes spin-b-rdwhxd91qs {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 
/* _content/AIShippingChatAppV2/Components/Pages/Chat/OrganizationSelector.razor.rz.scp.css */
.organization-selector-container[b-ezgb7g4995] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.organization-selector[b-ezgb7g4995] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    min-width: 300px;
}

.organization-label[b-ezgb7g4995] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.org-icon[b-ezgb7g4995] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.organization-selector-controls[b-ezgb7g4995] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.organization-select[b-ezgb7g4995] {
    flex: 1;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.organization-select:hover:not(:disabled)[b-ezgb7g4995] {
    background: white;
    border-color: rgba(59, 130, 246, 0.5);
}

.organization-select:focus[b-ezgb7g4995] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.organization-select:disabled[b-ezgb7g4995] {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading-spinner-small[b-ezgb7g4995] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-ezgb7g4995 0.6s linear infinite;
}

@keyframes spin-b-ezgb7g4995 {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .organization-selector[b-ezgb7g4995] {
        min-width: 0;
        width: 100%;
        max-width: 280px;
    }
    
    .organization-label span[b-ezgb7g4995] {
        display: none;
    }
}








/* _content/AIShippingChatAppV2/Components/Pages/UserProfileComponent.razor.rz.scp.css */
.main-container[b-cqys12u6f6] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 2rem;
    background-color: var(--app-bg, #f3f4f6);
}

.profile-container[b-cqys12u6f6] {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--card-bg, #ffffff);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

h1[b-cqys12u6f6] {
    margin-bottom: 1.5rem;
    color: var(--heading-color, #111827);
    font-size: 1.5rem;
    font-weight: 600;
}

.profile-section[b-cqys12u6f6] {
    margin-bottom: 1.5rem;
}

label[b-cqys12u6f6] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.role-select[b-cqys12u6f6] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color, #d1d5db);
    border-radius: 0.375rem;
    font-size: 1rem;
    background-color: var(--input-bg, #ffffff);
}

.profile-actions[b-cqys12u6f6] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary[b-cqys12u6f6] {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-button-bg, #2563eb);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary:hover[b-cqys12u6f6] {
    background-color: var(--primary-button-hover-bg, #1d4ed8);
}

.btn-cancel[b-cqys12u6f6] {
    padding: 0.75rem 1.5rem;
    background-color: #dc2626;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-cancel:hover[b-cqys12u6f6] {
    background-color: #b91c1c;
} 
/* _content/AIShippingChatAppV2/Components/Shared/SkeletonLoader.razor.rz.scp.css */
.skeleton-loader[b-otf07mxgw3] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-line[b-otf07mxgw3] {
    height: 1rem;
    background: linear-gradient(90deg, 
        var(--skeleton-bg, #f0f0f0) 25%, 
        var(--skeleton-highlight, #e0e0e0) 50%, 
        var(--skeleton-bg, #f0f0f0) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading-b-otf07mxgw3 1.5s infinite;
    border-radius: 0.25rem;
}

:root.dark-mode .skeleton-line[b-otf07mxgw3] {
    background: linear-gradient(90deg, 
        var(--skeleton-bg, #2a2a2a) 25%, 
        var(--skeleton-highlight, #3a3a3a) 50%, 
        var(--skeleton-bg, #2a2a2a) 75%);
    background-size: 200% 100%;
}

@keyframes skeleton-loading-b-otf07mxgw3 {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skeleton-line[b-otf07mxgw3] {
        animation: none;
        background: var(--skeleton-bg, #f0f0f0);
    }
    
    :root.dark-mode .skeleton-line[b-otf07mxgw3] {
        background: var(--skeleton-bg, #2a2a2a);
    }
} 
