/* /Components/Features/Demo/SMB01/DocumentIQShell.razor.rz.scp.css */
/* ============================================
   DocumentIQ Shell — Shared Design System
   ============================================
   Note: ::deep is required for styles targeting
   elements inside child Blazor components
   (ChatInterface, CollectionSelector, FileManager,
   LoginPanel). Without it, Blazor's CSS isolation
   scopes selectors to only match elements rendered
   directly by this component.
   ============================================ */

/* --- Layout Shell (direct elements) --- */
.smb01-container[b-xt6gu604ee] {
    height: calc(100vh - 3.5rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #f1f5f9;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Header (direct elements) --- */
.smb01-header[b-xt6gu604ee] {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #cbd5e1;
}

.smb01-header-brand[b-xt6gu604ee] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-xt6gu604ee] .smb01-header-brand h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
}

[b-xt6gu604ee] .brand-accent {
    color: #3b82f6;
}

.smb01-header-status[b-xt6gu604ee] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

[b-xt6gu604ee] .auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

[b-xt6gu604ee] .btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

[b-xt6gu604ee] .btn-logout:hover {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
}

/* --- Tabs (direct elements) --- */
.smb01-tabs[b-xt6gu604ee] {
    flex-shrink: 0;
    display: flex;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #cbd5e1;
    padding: 0 1.5rem;
}

.smb01-tab[b-xt6gu604ee] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.smb01-tab:hover[b-xt6gu604ee] {
    color: #334155;
}

.smb01-tab.active[b-xt6gu604ee] {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

[b-xt6gu604ee] .smb01-tab i {
    font-size: 1rem;
}

/* --- Tab Content (direct elements) --- */
.smb01-tab-content[b-xt6gu604ee] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.smb01-tab-panel[b-xt6gu604ee] {
    display: none;
    flex: 1;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.smb01-tab-panel.active[b-xt6gu604ee] {
    display: flex;
}

/* --- Login (direct container + ::deep for child) --- */
[b-xt6gu604ee] .smb01-login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

[b-xt6gu604ee] .login-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

[b-xt6gu604ee] .login-card-header {
    padding: 2rem 2rem 0.5rem;
    text-align: center;
}

[b-xt6gu604ee] .login-card-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

[b-xt6gu604ee] .login-card-header p {
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 0;
}

[b-xt6gu604ee] .login-card-body {
    padding: 1.5rem 2rem 2rem;
}

[b-xt6gu604ee] .login-card-body .form-control {
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

[b-xt6gu604ee] .login-card-body .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

[b-xt6gu604ee] .login-card-body .btn-primary {
    border-radius: 10px;
    padding: 0.625rem;
    font-weight: 600;
    font-size: 0.875rem;
    background: #3b82f6;
    border-color: #3b82f6;
}

[b-xt6gu604ee] .login-card-body .btn-primary:hover:not(:disabled) {
    background: #2563eb;
    border-color: #2563eb;
}

/* ============================================
   Child Component Styles (all use ::deep)
   ============================================ */

/* --- Chat Panel (ChatInterface) --- */
[b-xt6gu604ee] .chat-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    padding: 0;
}

/* Centered content column */
[b-xt6gu604ee] .chat-toolbar,
[b-xt6gu604ee] .chat-messages,
[b-xt6gu604ee] .chat-input-area {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Compact Toolbar */
[b-xt6gu604ee] .chat-toolbar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

[b-xt6gu604ee] .chat-toolbar-left {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #475569;
    font-size: 0.8125rem;
    min-width: 0;
}

[b-xt6gu604ee] .chat-toolbar-left i {
    color: #3b82f6;
    flex-shrink: 0;
}

[b-xt6gu604ee] .chat-collection-select {
    border: none;
    background: transparent;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    padding: 0.25rem 0.25rem;
    outline: none;
    max-width: 260px;
}

[b-xt6gu604ee] .chat-collection-select:focus {
    outline: none;
}

[b-xt6gu604ee] .chat-toolbar-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    flex-shrink: 0;
}

[b-xt6gu604ee] .chat-toolbar-btn:hover:not(:disabled) {
    background: #f8fafc;
    border-color: #94a3b8;
}

[b-xt6gu604ee] .chat-toolbar-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Messages Area */
[b-xt6gu604ee] .chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
    scroll-behavior: smooth;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 transparent;
}

[b-xt6gu604ee] .chat-messages::-webkit-scrollbar { width: 5px; }
[b-xt6gu604ee] .chat-messages::-webkit-scrollbar-track { background: transparent; }
[b-xt6gu604ee] .chat-messages::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
[b-xt6gu604ee] .chat-messages::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Empty State */
[b-xt6gu604ee] .chat-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #64748b;
    text-align: center;
    padding: 2rem 1rem;
}

[b-xt6gu604ee] .chat-empty-state .empty-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

[b-xt6gu604ee] .chat-empty-state .empty-icon i { font-size: 1.25rem; color: #64748b; }
[b-xt6gu604ee] .chat-empty-state h6 { font-size: 0.875rem; font-weight: 600; color: #475569; margin-bottom: 0.25rem; }
[b-xt6gu604ee] .chat-empty-state p { font-size: 0.8125rem; color: #64748b; margin-bottom: 0; max-width: 260px; }

/* Message Bubbles — no avatars */
[b-xt6gu604ee] .chat-message {
    margin-bottom: 0.75rem;
    max-width: 85%;
    animation: messageIn-b-xt6gu604ee 0.15s ease-out;
}

[b-xt6gu604ee] .chat-message.user {
    margin-left: auto;
}

[b-xt6gu604ee] .chat-message.assistant {
    margin-right: auto;
}

[b-xt6gu604ee] .message-bubble {
    padding: 0.625rem 0.875rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    line-height: 1.55;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

[b-xt6gu604ee] .chat-message.user .message-bubble {
    background: #3b82f6;
    color: #fff;
    border-bottom-right-radius: 4px;
}

[b-xt6gu604ee] .chat-message.assistant .message-bubble {
    background: #fff;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    border-bottom-left-radius: 4px;
}

@keyframes messageIn-b-xt6gu604ee {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Typing Indicator */
[b-xt6gu604ee] .typing-bubble {
    display: inline-block;
    padding: 0.625rem 1rem;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
}

[b-xt6gu604ee] .typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
}

[b-xt6gu604ee] .typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #94a3b8;
    animation: typing-b-xt6gu604ee 1.4s infinite;
}

[b-xt6gu604ee] .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
[b-xt6gu604ee] .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-b-xt6gu604ee {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* Input Area */
[b-xt6gu604ee] .chat-input-area {
    flex-shrink: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
}

[b-xt6gu604ee] .chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.375rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

[b-xt6gu604ee] .chat-input-wrapper:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Web Toggle Chip — inside input bar */
[b-xt6gu604ee] .web-chip {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    user-select: none;
    flex-shrink: 0;
}

[b-xt6gu604ee] .web-chip:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

[b-xt6gu604ee] .web-chip.active {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #2563eb;
}

[b-xt6gu604ee] .web-chip input[type="checkbox"] { display: none; }
[b-xt6gu604ee] .web-chip i { font-size: 0.75rem; }

/* Text Input */
[b-xt6gu604ee] .chat-input-wrapper input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.8125rem;
    padding: 0.25rem 0.375rem;
    background: transparent;
    color: #0f172a;
    min-width: 0;
}

[b-xt6gu604ee] .chat-input-wrapper input[type="text"]::placeholder {
    color: #94a3b8;
}

/* Send Button */
[b-xt6gu604ee] .btn-send {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: none;
    background: #3b82f6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}

[b-xt6gu604ee] .btn-send:hover:not(:disabled) { background: #2563eb; }
[b-xt6gu604ee] .btn-send:disabled { background: #cbd5e1; cursor: not-allowed; }
[b-xt6gu604ee] .btn-send i { font-size: 0.9375rem; }

/* Footer Info */
[b-xt6gu604ee] .chat-footer-info {
    padding: 0.25rem 0.25rem 0;
    font-size: 0.6875rem;
    color: #94a3b8;
}

/* Alert Dismiss */
[b-xt6gu604ee] .alert-dismiss {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
}

/* --- Documents Panel (direct element, side-by-side layout) --- */
.documents-panel[b-xt6gu604ee] {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    padding: 1rem 1.5rem;
    gap: 1rem;
    min-height: 0;
}

.docs-left[b-xt6gu604ee] {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.docs-right[b-xt6gu604ee] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
}

/* --- Document Sections (CollectionSelector, FileManager) --- */
[b-xt6gu604ee] .docs-section {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

[b-xt6gu604ee] .docs-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

[b-xt6gu604ee] .docs-section-header h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-xt6gu604ee] .docs-section-header h6 i {
    color: #3b82f6;
}

[b-xt6gu604ee] .docs-section-actions {
    display: flex;
    gap: 0.375rem;
}

[b-xt6gu604ee] .docs-section-body {
    padding: 0.75rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

/* Collection List */
[b-xt6gu604ee] .collection-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

[b-xt6gu604ee] .collection-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.1s;
    font-size: 0.8125rem;
}

[b-xt6gu604ee] .collection-item:hover {
    background: #f8fafc;
}

[b-xt6gu604ee] .collection-item.selected {
    background: #eff6ff;
}

[b-xt6gu604ee] .collection-item-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

[b-xt6gu604ee] .collection-item-info i {
    color: #3b82f6;
    flex-shrink: 0;
}

[b-xt6gu604ee] .collection-item-name {
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

[b-xt6gu604ee] .collection-item-count {
    font-size: 0.75rem;
    color: #64748b;
    flex-shrink: 0;
}

[b-xt6gu604ee] .collection-item-actions {
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.1s;
}

[b-xt6gu604ee] .collection-item:hover .collection-item-actions {
    opacity: 1;
}

/* Create Collection Inline */
[b-xt6gu604ee] .create-collection-inline {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    flex-shrink: 0;
}

[b-xt6gu604ee] .create-collection-inline input {
    flex: 1;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    outline: none;
    transition: border-color 0.15s;
    min-width: 0;
}

[b-xt6gu604ee] .create-collection-inline input:focus {
    border-color: #3b82f6;
}

/* Document List */
[b-xt6gu604ee] .document-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

[b-xt6gu604ee] .document-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    transition: background 0.1s;
    font-size: 0.8125rem;
}

[b-xt6gu604ee] .document-item:hover {
    background: #f8fafc;
}

[b-xt6gu604ee] .document-item-info {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    min-width: 0;
    flex: 1;
}

[b-xt6gu604ee] .document-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[b-xt6gu604ee] .document-item-icon i {
    font-size: 0.875rem;
    color: #475569;
}

[b-xt6gu604ee] .document-item-details {
    min-width: 0;
}

[b-xt6gu604ee] .document-item-name {
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

[b-xt6gu604ee] .document-item-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    color: #64748b;
}

[b-xt6gu604ee] .document-item-actions {
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.1s;
}

[b-xt6gu604ee] .document-item:hover .document-item-actions {
    opacity: 1;
}

/* Status Badge */
[b-xt6gu604ee] .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 500;
}

[b-xt6gu604ee] .status-badge.success {
    background: #f0fdf4;
    color: #15803d;
}

[b-xt6gu604ee] .status-badge.warning {
    background: #fefce8;
    color: #a16207;
}

[b-xt6gu604ee] .status-badge.info {
    background: #eff6ff;
    color: #1d4ed8;
}

[b-xt6gu604ee] .status-badge.danger {
    background: #fef2f2;
    color: #b91c1c;
}

/* Upload Area */
[b-xt6gu604ee] .upload-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px dashed #94a3b8;
    border-radius: 10px;
    background: #f8fafc;
    transition: border-color 0.15s, background 0.15s;
    flex-shrink: 0;
}

[b-xt6gu604ee] .upload-area:hover {
    border-color: #93c5fd;
    background: #f8faff;
}

[b-xt6gu604ee] .upload-area .form-control {
    border: none;
    background: transparent;
    font-size: 0.8125rem;
    padding: 0;
}

[b-xt6gu604ee] .upload-area .form-control:focus {
    box-shadow: none;
}

/* --- Shared Utility Buttons --- */
[b-xt6gu604ee] .btn-icon-sm {
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.75rem;
}

[b-xt6gu604ee] .btn-icon-sm:hover:not(:disabled) {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #334155;
}

[b-xt6gu604ee] .btn-icon-sm.danger:hover:not(:disabled) {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
}

[b-xt6gu604ee] .btn-action-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

[b-xt6gu604ee] .btn-action-sm:hover:not(:disabled) {
    background: #f8fafc;
    border-color: #94a3b8;
}

[b-xt6gu604ee] .btn-action-sm.primary {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

[b-xt6gu604ee] .btn-action-sm.primary:hover:not(:disabled) {
    background: #2563eb;
}

[b-xt6gu604ee] .btn-action-sm.success {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

[b-xt6gu604ee] .btn-action-sm.success:hover:not(:disabled) {
    background: #16a34a;
}

[b-xt6gu604ee] .btn-action-sm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Empty Documents State */
[b-xt6gu604ee] .docs-empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: #64748b;
}

[b-xt6gu604ee] .docs-empty-state i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

[b-xt6gu604ee] .docs-empty-state p {
    font-size: 0.8125rem;
    margin: 0;
}

/* Alert Messages */
[b-xt6gu604ee] .alert-inline {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    margin-top: 0.5rem;
}

[b-xt6gu604ee] .alert-inline.success {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

[b-xt6gu604ee] .alert-inline.danger {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* --- Loading Modal (direct element) --- */
.loading-overlay[b-xt6gu604ee] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-card[b-xt6gu604ee] {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

[b-xt6gu604ee] .loading-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

[b-xt6gu604ee] .loading-card p {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .smb01-header[b-xt6gu604ee] { padding: 0.5rem 1rem; }
    .smb01-tabs[b-xt6gu604ee] { padding: 0 1rem; }

    [b-xt6gu604ee] .chat-toolbar,
    [b-xt6gu604ee] .chat-messages,
    [b-xt6gu604ee] .chat-input-area {
        max-width: 100%;
        padding-right: 5rem;
    }

    .documents-panel[b-xt6gu604ee] {
        flex-direction: column;
        padding: 0.75rem 1rem;
        overflow-y: auto;
    }
    .docs-left[b-xt6gu604ee] {
        width: 100%;
        max-height: 40%;
    }
    .docs-right[b-xt6gu604ee] {
        flex: 1;
    }
    [b-xt6gu604ee] .chat-message { max-width: 90%; }
    [b-xt6gu604ee] .collection-item-actions { opacity: 1; }
    [b-xt6gu604ee] .document-item-actions { opacity: 1; }
}

@media (max-width: 480px) {
    [b-xt6gu604ee] .auth-badge .auth-text { display: none; }
    [b-xt6gu604ee] .chat-message { max-width: 95%; }
    [b-xt6gu604ee] .web-chip-label { display: none; }

    [b-xt6gu604ee] .chat-toolbar,
    [b-xt6gu604ee] .chat-messages,
    [b-xt6gu604ee] .chat-input-area {
        padding-right: 4rem;
    }
}
/* /Components/Layout/footer.razor.rz.scp.css */
.navbar-toggler[b-bkcr963e13] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-bkcr963e13] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-bkcr963e13] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-bkcr963e13] {
    font-size: 1.1rem;
}

.bi[b-bkcr963e13] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-bkcr963e13] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-bkcr963e13] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-bkcr963e13] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-bkcr963e13] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-bkcr963e13] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-bkcr963e13] {
        padding-bottom: 1rem;
    }

    .nav-item[b-bkcr963e13]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-bkcr963e13]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-bkcr963e13]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-bkcr963e13] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-bkcr963e13] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-bkcr963e13] {
        display: none;
    }

    .nav-scrollable[b-bkcr963e13] {
        /* 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/MainLayout.razor.rz.scp.css */
.page[b-4zp5bx6q2i] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-4zp5bx6q2i] {
    flex: 1;
}

.sidebar[b-4zp5bx6q2i] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-4zp5bx6q2i] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-4zp5bx6q2i]  a, .top-row[b-4zp5bx6q2i]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-4zp5bx6q2i]  a:hover, .top-row[b-4zp5bx6q2i]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-4zp5bx6q2i]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-4zp5bx6q2i] {
        justify-content: space-between;
    }

    .top-row[b-4zp5bx6q2i]  a, .top-row[b-4zp5bx6q2i]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-4zp5bx6q2i] {
        flex-direction: row;
    }

    .sidebar[b-4zp5bx6q2i] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-4zp5bx6q2i] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-4zp5bx6q2i]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-4zp5bx6q2i], article[b-4zp5bx6q2i] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-4zp5bx6q2i] {
    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-4zp5bx6q2i] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-5pcf8shkts] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-5pcf8shkts] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-5pcf8shkts] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-5pcf8shkts] {
    font-size: 1.1rem;
}

.bi[b-5pcf8shkts] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-5pcf8shkts] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-5pcf8shkts] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-5pcf8shkts] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-5pcf8shkts] {
    font-size: 1rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-5pcf8shkts] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-5pcf8shkts] {
        padding-bottom: 1rem;
    }

    .nav-item[b-5pcf8shkts]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-5pcf8shkts]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-5pcf8shkts]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-5pcf8shkts] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-5pcf8shkts] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-5pcf8shkts] {
        display: none;
    }

    .nav-scrollable[b-5pcf8shkts] {
        /* 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/Pages/Demo/DemoChat.razor.rz.scp.css */
/* ============================================
   DemoChat — Error Page Styles
   (All shared styles live in DocumentIQShell)
   ============================================ */

/* --- Error Page Layout --- */
.error-page[b-je2oyx9uax] {
    height: calc(100vh - 3.5rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #f1f5f9;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

.error-page-header[b-je2oyx9uax] {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #cbd5e1;
}

.error-page-brand[b-je2oyx9uax] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-je2oyx9uax] .error-page-brand h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
}

[b-je2oyx9uax] .brand-accent {
    color: #3b82f6;
}

/* --- Error Card --- */
.error-container[b-je2oyx9uax] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.error-card[b-je2oyx9uax] {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 2.5rem 2rem;
    text-align: center;
}

[b-je2oyx9uax] .error-card i {
    font-size: 2.5rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    display: block;
}

[b-je2oyx9uax] .error-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

[b-je2oyx9uax] .error-card p {
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 0;
    line-height: 1.5;
}
/* /Components/Pages/Demo/Whisper.razor.rz.scp.css */
/*Custom CSS for hover effects*/
.hover-bg-light:hover[b-ayyiekl28m] {
     background-color: #f8f9fa !important;
     transition: background-color 0.2s ease;
 }

.cursor-pointer[b-ayyiekl28m] {
    cursor: pointer;
}

.rounded-4[b-ayyiekl28m] {
    border-radius: 1rem !important;
}

.rounded-top-4[b-ayyiekl28m] {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}
/* /Components/Pages/DocumentIQ.razor.rz.scp.css */
/* Use Cases Section */

:root[b-v63j6wfmtw] {
    --plum: #553C9A;
    --purple: #9F7AEA;
    --turquoise: #38B2AC;
    --amber: #ED8936;
    --light-purple: #EDE9F6;
    --dark-text: #2D3748;
    --light-text: #718096;
    --white: #FFFFFF;
    --off-white: #F7FAFC;
    --gradient: linear-gradient(135deg, var(--plum) 0%, var(--purple) 100%);
}
.section-title[b-v63j6wfmtw] {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e40af;
    font-family: Roboto,sans-serif;
}

.use-cases[b-v63j6wfmtw] {
    padding: 5rem 0;
}

.use-cases-grid[b-v63j6wfmtw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card[b-v63j6wfmtw] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 2px solid #10b981;
    font-size: 16px;
}

.use-case-card:hover[b-v63j6wfmtw] {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.15);
}

.use-case-card h3[b-v63j6wfmtw] {
    color: #1e40af;
    font-size: 1.50rem;
    margin-bottom: 1rem;
}

.use-case-list[b-v63j6wfmtw] {
    list-style: none;
    padding: 0;
}

.use-case-list li[b-v63j6wfmtw] {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
}

.use-case-list li[b-v63j6wfmtw]:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.callout[b-v63j6wfmtw] {
    
    background: #F3F9FF;
    color: #011D47;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

/* Features Section */

/* Core Features Section */
.core-features[b-v63j6wfmtw] {
    padding: 5rem 0;
}

.features-grid[b-v63j6wfmtw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.feature-card[b-v63j6wfmtw] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 2px solid #007BFF;
    font-size: 16px;
}

.feature-card:hover[b-v63j6wfmtw] {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.15);
}

.feature-card h3[b-v63j6wfmtw] {
    color: #1e40af;
    font-size: 1.65rem;
    text-align: center;
}

.feature-subtitle[b-v63j6wfmtw] {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: center;
}

.feature-list[b-v63j6wfmtw] {
    list-style: none;
    padding: 0;
}

.feature-list li[b-v63j6wfmtw] {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
    font-family: Roboto, sans-serif;
}

.feature-list li[b-v63j6wfmtw]:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.custom-title[b-3mr73m1292] {
    color: blue;
    font-size: 24px;
    font-weight: bold;
}

.custom-text[b-3mr73m1292] {
    color: green;
    font-style: normal;
}

.custom-bg[b-3mr73m1292] {
    background-color: red;
}
/* /Components/Pages/Nexus.razor.rz.scp.css */
.framework[b-43rwla2fc5] {
    padding: 6rem 0;
    color: white;
}

.service-section-header[b-43rwla2fc5] {
    text-align: center;
    margin-bottom: 4rem;
}

.service-section-intro[b-43rwla2fc5] {
    font-size: 1rem;
    max-width: 900px;
    line-height: 1.5;
}

.value-case-container[b-43rwla2fc5] {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 5px solid #667eea;
    backdrop-filter: blur(10px);
}

.benefit[b-43rwla2fc5] {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.challenge-text[b-43rwla2fc5] {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.solution-text[b-43rwla2fc5] {
    font-size: 1.1rem;
    color: white;
    line-height: 1.7;
}

.framework-grid[b-43rwla2fc5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.framework-card[b-43rwla2fc5] {
    background: #182546;
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.framework-card:hover[b-43rwla2fc5] {
    transform: translateY(-5px);
    background: rgba(24, 37, 70, 0.97);
}

.phase-number[b-43rwla2fc5] {
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.framework-card h3[b-43rwla2fc5] {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.framework-card h4[b-43rwla2fc5] {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.framework-card p[b-43rwla2fc5] {
    opacity: 0.9;
    line-height: 1.6;
}

.services-divider[b-43rwla2fc5] {
    text-align: center;
    margin: 2rem 0 4rem;
    font-size: 2rem;
}

.service-icon[b-43rwla2fc5] {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.nexus-button[b-43rwla2fc5] {
    display: inline-flex;
    text-align: center;
    font-size: 16px;
    
    line-height: 1;
    color: #01A4EC;
    background-color: #FFFFFF;
    font-weight: 600;
    border-radius: 5px;
    outline: none;
    
    align-items: center;
    gap: 10px;
}
/* /Components/Pages/ProfessionalServices.razor.rz.scp.css */

/* Challenge Section */
.challenge[b-w0gtvrq70b] {
    padding: 6rem 0;
    background: #ffffff;
}

.section-header[b-w0gtvrq70b] {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2[b-w0gtvrq70b] {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-intro[b-w0gtvrq70b] {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    color: #5a6c7d;
    line-height: 1.6;
}

.challenge-grid[b-w0gtvrq70b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.challenge-card[b-w0gtvrq70b] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #e74c3c;
}

.challenge-card:hover[b-w0gtvrq70b] {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.challenge-card h3[b-w0gtvrq70b] {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.challenge-card p[b-w0gtvrq70b] {
    color: #5a6c7d;
    line-height: 1.6;
}

.example[b-w0gtvrq70b] {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    font-style: italic;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Services Section */
.framework[b-w0gtvrq70b] {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF9F6 100%);
    color: white;
}

.service-section-header[b-w0gtvrq70b] {
    text-align: center;
    margin-bottom: 4rem;
}

.service-section-intro[b-w0gtvrq70b] {
    font-size: 1.15rem;
    max-width: 900px;
    line-height: 1.6;
}

.value-case-container[b-w0gtvrq70b] {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 5px solid #667eea;
    backdrop-filter: blur(10px);
}

.benefit[b-w0gtvrq70b] {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.challenge-text[b-w0gtvrq70b] {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.solution-text[b-w0gtvrq70b] {
    font-size: 1.1rem;
    color: white;
    line-height: 1.7;
}

.framework-grid[b-w0gtvrq70b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.framework-card[b-w0gtvrq70b] {
    background: #182546;
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.framework-card:hover[b-w0gtvrq70b] {
    transform: translateY(-5px);
    background: rgba(24, 37, 70, 0.97);
}

.phase-number[b-w0gtvrq70b] {
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.framework-card h3[b-w0gtvrq70b] {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.framework-card h4[b-w0gtvrq70b] {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.framework-card p[b-w0gtvrq70b] {
    opacity: 0.9;
    line-height: 1.6;
}

.services-divider[b-w0gtvrq70b] {
    text-align: center;
    margin: 2rem 0 4rem;
    font-size: 2rem;
}

.service-icon[b-w0gtvrq70b] {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Benefits Section */
.benefits[b-w0gtvrq70b] {
    padding: 6rem 0;
    background: #ecf0f1;
}

.benefits-grid[b-w0gtvrq70b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card[b-w0gtvrq70b] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover[b-w0gtvrq70b] {
    transform: translateY(-5px);
}

.benefit-icon[b-w0gtvrq70b] {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3[b-w0gtvrq70b] {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}
/* /Components/Pages/Services.razor.rz.scp.css */

/* Challenge Section */
.challenge[b-vq11yd2vsg] {
    padding: 6rem 0;
    background: #ffffff;
}

.section-header[b-vq11yd2vsg] {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2[b-vq11yd2vsg] {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-intro[b-vq11yd2vsg] {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    color: #5a6c7d;
    line-height: 1.6;
}

.challenge-grid[b-vq11yd2vsg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.challenge-card[b-vq11yd2vsg] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #e74c3c;
}

.challenge-card:hover[b-vq11yd2vsg] {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.challenge-card h3[b-vq11yd2vsg] {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.challenge-card p[b-vq11yd2vsg] {
    color: #5a6c7d;
    line-height: 1.6;
}

.example[b-vq11yd2vsg] {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    font-style: italic;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Services Section */
.framework[b-vq11yd2vsg] {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF9F6 100%);
    color: white;
}

.service-section-header[b-vq11yd2vsg] {
    text-align: center;
    margin-bottom: 4rem;
}

.service-section-intro[b-vq11yd2vsg] {
    font-size: 1.15rem;
    max-width: 900px;
    line-height: 1.6;
}

.value-case-container[b-vq11yd2vsg] {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 5px solid #667eea;
    backdrop-filter: blur(10px);
}

.benefit[b-vq11yd2vsg] {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.challenge-text[b-vq11yd2vsg] {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.solution-text[b-vq11yd2vsg] {
    font-size: 1.1rem;
    color: white;
    line-height: 1.7;
}

.framework-grid[b-vq11yd2vsg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.framework-card[b-vq11yd2vsg] {
    background: #182546;
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.framework-card:hover[b-vq11yd2vsg] {
    transform: translateY(-5px);
    background: rgba(24, 37, 70, 0.97);
}

.phase-number[b-vq11yd2vsg] {
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.framework-card h3[b-vq11yd2vsg] {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.framework-card h4[b-vq11yd2vsg] {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.framework-card p[b-vq11yd2vsg] {
    opacity: 0.9;
    line-height: 1.6;
}

.services-divider[b-vq11yd2vsg] {
    text-align: center;
    margin: 2rem 0 4rem;
    font-size: 2rem;
}

.service-icon[b-vq11yd2vsg] {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Benefits Section */
.benefits[b-vq11yd2vsg] {
    padding: 6rem 0;
    background: #ecf0f1;
}

.benefits-grid[b-vq11yd2vsg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card[b-vq11yd2vsg] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover[b-vq11yd2vsg] {
    transform: translateY(-5px);
}

.benefit-icon[b-vq11yd2vsg] {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3[b-vq11yd2vsg] {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}
