/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-vuvqev3shd] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-vuvqev3shd] {
    flex: 1;
    background-color: var(--bg-secondary);
    overflow-y: auto;
}

.sidebar[b-vuvqev3shd] {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.content[b-vuvqev3shd] {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 640.98px) {
    .page[b-vuvqev3shd] {
        flex-direction: column;
    }
}

@media (min-width: 641px) {
    .page[b-vuvqev3shd] {
        flex-direction: row;
    }

    .sidebar[b-vuvqev3shd] {
        width: 280px;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow-y: auto;
    }

    .sidebar[b-vuvqev3shd]::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar[b-vuvqev3shd]::-webkit-scrollbar-track {
        background: transparent;
    }

    .sidebar[b-vuvqev3shd]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
    }

    .sidebar[b-vuvqev3shd]::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }
}

#blazor-error-ui[b-vuvqev3shd] {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    bottom: 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
    display: none;
    left: 0;
    padding: 1rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: white;
    border-radius: 0;
}

#blazor-error-ui .dismiss[b-vuvqev3shd] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

#blazor-error-ui .dismiss:hover[b-vuvqev3shd] {
    opacity: 1;
}

#blazor-error-ui .reload[b-vuvqev3shd] {
    color: white;
    text-decoration: underline;
    margin-left: 1rem;
    font-weight: 500;
}

#blazor-error-ui .reload:hover[b-vuvqev3shd] {
    text-decoration: none;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-header[b-cejq6wfhzp] {
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container[b-cejq6wfhzp] {
    flex: 1;
}

.logo[b-cejq6wfhzp] {
    height: 60px;
    width: auto;
    display: block;
}

.navbar-toggler[b-cejq6wfhzp] {
    display: none;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.navbar-toggler:hover[b-cejq6wfhzp] {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon[b-cejq6wfhzp] {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: white;
    position: relative;
    transition: all 0.3s;
}

.navbar-toggler-icon[b-cejq6wfhzp]::before,
.navbar-toggler-icon[b-cejq6wfhzp]::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    left: 0;
    transition: all 0.3s;
}

.navbar-toggler-icon[b-cejq6wfhzp]::before {
    top: -6px;
}

.navbar-toggler-icon[b-cejq6wfhzp]::after {
    bottom: -6px;
}

.navbar-toggler-check[b-cejq6wfhzp] {
    display: none;
}

.nav-scrollable[b-cejq6wfhzp] {
    display: none;
    padding: 1.5rem 0;
}

.navbar-toggler-check:checked ~ .nav-scrollable[b-cejq6wfhzp] {
    display: block;
}

.nav[b-cejq6wfhzp] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 1rem;
}

/* User Card */
.user-card[b-cejq6wfhzp] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

.user-card-avatar[b-cejq6wfhzp] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(14, 165, 233, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-card-info[b-cejq6wfhzp] {
    flex: 1;
    min-width: 0;
}

.user-card-name[b-cejq6wfhzp] {
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.0625rem;
}

.user-card-title[b-cejq6wfhzp] {
    font-size: 0.6875rem;
    color: #0ea5e9;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.0625rem;
}

.user-card-email[b-cejq6wfhzp] {
    font-size: 0.6875rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-item[b-cejq6wfhzp] {
    margin: 0;
}

.nav-item[b-cejq6wfhzp]  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.nav-item[b-cejq6wfhzp]  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(4px);
}

.nav-item[b-cejq6wfhzp]  a.active {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.3);
}

.nav-item[b-cejq6wfhzp]  a.active:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25) 0%, rgba(6, 182, 212, 0.25) 100%);
}

.nav-icon[b-cejq6wfhzp] {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.unread-badge[b-cejq6wfhzp] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.375rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    margin-left: auto;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
    animation: pulse-badge-b-cejq6wfhzp 2s ease-in-out infinite;
}

@keyframes pulse-badge-b-cejq6wfhzp {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.nav-divider[b-cejq6wfhzp] {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

/* Collapsible Sections */
.nav-section[b-cejq6wfhzp] {
    margin-bottom: 0.5rem;
}

.nav-section-title[b-cejq6wfhzp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    user-select: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.nav-section-title:hover[b-cejq6wfhzp] {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.03);
}

.nav-section-icon[b-cejq6wfhzp] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.6;
    transform: rotate(-90deg);
    transition: all 0.3s ease;
}

.nav-section-icon.expanded[b-cejq6wfhzp] {
    transform: rotate(0deg);
}

.nav-section-title:hover .nav-section-icon[b-cejq6wfhzp] {
    opacity: 1;
}

.nav-section-content[b-cejq6wfhzp] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-section-content.expanded[b-cejq6wfhzp] {
    max-height: 500px;
}

@media (max-width: 640.98px) {
    .navbar-toggler[b-cejq6wfhzp] {
        display: block;
    }

    .nav-scrollable[b-cejq6wfhzp] {
        display: none;
        padding: 0;
    }

    .nav-scrollable.show[b-cejq6wfhzp] {
        display: block;
        max-height: calc(100vh - 110px);
        padding: 1.5rem 0;
        overflow-y: auto;
    }
}

@media (min-width: 641px) {
    .navbar-toggler[b-cejq6wfhzp] {
        display: none;
    }

    .nav-scrollable[b-cejq6wfhzp] {
        display: block;
        height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .nav-scrollable[b-cejq6wfhzp]::-webkit-scrollbar {
        width: 6px;
    }

    .nav-scrollable[b-cejq6wfhzp]::-webkit-scrollbar-track {
        background: transparent;
    }

    .nav-scrollable[b-cejq6wfhzp]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
    }

    .nav-scrollable[b-cejq6wfhzp]::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }
}
/* /Components/Pages/Chat.razor.rz.scp.css */
.chat-container[b-mxmo2wn6xz] {
    height: calc(100vh - 120px);
    padding: 0;
}

.chat-container .row[b-mxmo2wn6xz] {
    margin: 0;
    height: 100%;
}

/* Users Panel */
.users-panel[b-mxmo2wn6xz] {
    border-right: 1px solid var(--border-color, #dee2e6);
    padding: 0;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.panel-header[b-mxmo2wn6xz] {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color, #dee2e6);
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.panel-header h5[b-mxmo2wn6xz] {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.panel-header .icon[b-mxmo2wn6xz] {
    width: 24px;
    height: 24px;
    color: #0ea5e9;
}

.chat-tabs[b-mxmo2wn6xz] {
    display: flex;
    background: white;
    border-bottom: 1px solid var(--border-color, #dee2e6);
}

.tab-button[b-mxmo2wn6xz] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    color: #6c757d;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-button:hover[b-mxmo2wn6xz] {
    background: #f8f9fa;
}

.tab-button.active[b-mxmo2wn6xz] {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
}

.search-box[b-mxmo2wn6xz] {
    padding: 1rem;
    background: white;
    border-bottom: 1px solid var(--border-color, #dee2e6);
}

.search-box .form-control[b-mxmo2wn6xz] {
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

.users-list[b-mxmo2wn6xz] {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.user-item[b-mxmo2wn6xz] {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #e9ecef;
}

.user-item:hover[b-mxmo2wn6xz] {
    background: white;
}

.user-item.active[b-mxmo2wn6xz] {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-left: 3px solid #0ea5e9;
}

.user-avatar[b-mxmo2wn6xz] {
    position: relative;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.avatar-circle[b-mxmo2wn6xz] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.group-avatar .avatar-circle[b-mxmo2wn6xz] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.status-indicator[b-mxmo2wn6xz] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.status-indicator.online[b-mxmo2wn6xz] {
    background: #10b981;
}

.user-info[b-mxmo2wn6xz] {
    flex: 1;
    min-width: 0;
}

.user-name[b-mxmo2wn6xz] {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email[b-mxmo2wn6xz] {
    font-size: 0.8125rem;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.unread-badge[b-mxmo2wn6xz] {
    border-radius: 10px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Chat Panel */
.chat-panel[b-mxmo2wn6xz] {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
}

.chat-header[b-mxmo2wn6xz] {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color, #dee2e6);
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.chat-header h6[b-mxmo2wn6xz] {
    font-weight: 600;
    color: #1f2937;
}

.messages-container[b-mxmo2wn6xz] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f9fafb;
}

.message[b-mxmo2wn6xz] {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.message.sent[b-mxmo2wn6xz] {
    align-items: flex-end;
}

.message.received[b-mxmo2wn6xz] {
    align-items: flex-start;
}

.message-sender[b-mxmo2wn6xz] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.25rem;
    margin-left: 0.5rem;
}

.message-bubble[b-mxmo2wn6xz] {
    max-width: 70%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    position: relative;
}

.message.sent .message-bubble[b-mxmo2wn6xz] {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    border-bottom-right-radius: 0.25rem;
}

.message.received .message-bubble[b-mxmo2wn6xz] {
    background: white;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    border-bottom-left-radius: 0.25rem;
}

.message-text[b-mxmo2wn6xz] {
    word-wrap: break-word;
    line-height: 1.5;
}

.message-time[b-mxmo2wn6xz] {
    font-size: 0.6875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    opacity: 0.8;
}

.read-icon[b-mxmo2wn6xz] {
    width: 12px;
    height: 12px;
}

.message-input-container[b-mxmo2wn6xz] {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color, #dee2e6);
    background: white;
}

.message-input-container .input-group[b-mxmo2wn6xz] {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.message-input-container .form-control[b-mxmo2wn6xz] {
    border: none;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
}

.message-input-container .form-control:focus[b-mxmo2wn6xz] {
    box-shadow: none;
}

.message-input-container .btn[b-mxmo2wn6xz] {
    padding: 0.875rem 1.5rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.message-input-container .btn .icon[b-mxmo2wn6xz] {
    width: 18px;
    height: 18px;
}

/* Empty State */
.empty-state[b-mxmo2wn6xz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #6b7280;
}

.empty-icon[b-mxmo2wn6xz] {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.empty-state h5[b-mxmo2wn6xz] {
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Scrollbar Styling */
.users-list[b-mxmo2wn6xz]::-webkit-scrollbar,
.messages-container[b-mxmo2wn6xz]::-webkit-scrollbar {
    width: 6px;
}

.users-list[b-mxmo2wn6xz]::-webkit-scrollbar-track,
.messages-container[b-mxmo2wn6xz]::-webkit-scrollbar-track {
    background: transparent;
}

.users-list[b-mxmo2wn6xz]::-webkit-scrollbar-thumb,
.messages-container[b-mxmo2wn6xz]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.users-list[b-mxmo2wn6xz]::-webkit-scrollbar-thumb:hover,
.messages-container[b-mxmo2wn6xz]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Mobile Menu Button */
.mobile-menu-btn[b-mxmo2wn6xz] {
    display: none;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn:hover[b-mxmo2wn6xz] {
    background: #f9fafb;
}

.mobile-close-btn[b-mxmo2wn6xz] {
    display: none;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #6b7280;
}

.mobile-close-btn:hover[b-mxmo2wn6xz] {
    color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn[b-mxmo2wn6xz] {
        display: block;
    }

    .users-panel[b-mxmo2wn6xz] {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1050;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    }

    .users-panel.show[b-mxmo2wn6xz] {
        display: flex;
    }

    .mobile-close-btn[b-mxmo2wn6xz] {
        display: block;
    }

    .chat-panel[b-mxmo2wn6xz] {
        padding-top: 3.5rem;
        position: relative;
        z-index: 1;
    }

    .chat-header[b-mxmo2wn6xz] {
        padding-top: 1rem;
    }

    .message-bubble[b-mxmo2wn6xz] {
        max-width: 85%;
    }
}
/* /Components/Pages/Documentation.razor.rz.scp.css */
.documentation-container[b-i4q9j1arcu] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.documentation-header[b-i4q9j1arcu] {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 16px;
    color: white;
}

.documentation-header h1[b-i4q9j1arcu] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.header-icon[b-i4q9j1arcu] {
    width: 48px;
    height: 48px;
}

.header-subtitle[b-i4q9j1arcu] {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
}

/* Tabs */
.documentation-tabs[b-i4q9j1arcu] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    overflow-x: auto;
    flex-wrap: wrap;
}

.tab-button[b-i4q9j1arcu] {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #6b7280;
}

.tab-button svg[b-i4q9j1arcu] {
    width: 20px;
    height: 20px;
}

.tab-button:hover[b-i4q9j1arcu] {
    background: #f8f9fa;
    border-color: #e5e7eb;
}

.tab-button.active[b-i4q9j1arcu] {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    border-color: #0ea5e9;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

/* Content */
.documentation-content[b-i4q9j1arcu] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.doc-section h2[b-i4q9j1arcu] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    border-bottom: 3px solid #0ea5e9;
    padding-bottom: 0.5rem;
}

.doc-section h3[b-i4q9j1arcu] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #374151;
}

.doc-section h4[b-i4q9j1arcu] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.lead[b-i4q9j1arcu] {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Info Cards */
.info-card[b-i4q9j1arcu] {
    background: #f8f9fa;
    border-left: 4px solid #0ea5e9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-card h3[b-i4q9j1arcu] {
    margin-top: 0;
    color: #0ea5e9;
}

.info-card ul[b-i4q9j1arcu] {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.info-card li[b-i4q9j1arcu] {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Tech List */
.tech-list[b-i4q9j1arcu] {
    list-style: none;
    padding: 0;
}

.tech-list li[b-i4q9j1arcu] {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.tech-list li:last-child[b-i4q9j1arcu] {
    border-bottom: none;
}

/* Highlights Grid */
.highlights-grid[b-i4q9j1arcu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.highlight-item[b-i4q9j1arcu] {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.highlight-item svg[b-i4q9j1arcu] {
    width: 48px;
    height: 48px;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.highlight-item h4[b-i4q9j1arcu] {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    color: #1f2937;
}

.highlight-item p[b-i4q9j1arcu] {
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Feature Section */
.feature-section[b-i4q9j1arcu] {
    margin-bottom: 2rem;
}

.feature-section h3[b-i4q9j1arcu] {
    color: #0ea5e9;
    margin-top: 1.5rem;
}

.feature-section ul[b-i4q9j1arcu] {
    padding-left: 1.5rem;
}

.feature-section li[b-i4q9j1arcu] {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Code Examples */
.code-example[b-i4q9j1arcu] {
    margin: 1.5rem 0;
}

.code-example h4[b-i4q9j1arcu] {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.code-example pre[b-i4q9j1arcu] {
    background: #1f2937;
    color: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 0;
}

.code-example code[b-i4q9j1arcu] {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Schema Table */
.table-container[b-i4q9j1arcu] {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.schema-table[b-i4q9j1arcu] {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.schema-table th[b-i4q9j1arcu] {
    background: #0ea5e9;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.schema-table td[b-i4q9j1arcu] {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.schema-table tbody tr:last-child td[b-i4q9j1arcu] {
    border-bottom: none;
}

.schema-table code[b-i4q9j1arcu] {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #0ea5e9;
}

.note[b-i4q9j1arcu] {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

/* File Tree */
.file-tree ul[b-i4q9j1arcu] {
    list-style: none;
    padding-left: 1.5rem;
}

.file-tree > ul[b-i4q9j1arcu] {
    padding-left: 0;
}

.file-tree li[b-i4q9j1arcu] {
    margin: 0.5rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

/* API Sections */
.api-section[b-i4q9j1arcu] {
    margin-bottom: 3rem;
}

.api-section h3[b-i4q9j1arcu] {
    color: #0ea5e9;
    border-bottom: 2px solid #0ea5e9;
    padding-bottom: 0.5rem;
}

.api-method[b-i4q9j1arcu] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #06b6d4;
}

.api-method h4[b-i4q9j1arcu] {
    margin-top: 0;
    font-family: 'Courier New', monospace;
    color: #0ea5e9;
    font-size: 1.25rem;
}

.api-method > p[b-i4q9j1arcu] {
    color: #6b7280;
    margin: 0.5rem 0 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .documentation-container[b-i4q9j1arcu] {
        padding: 1rem;
    }

    .documentation-header h1[b-i4q9j1arcu] {
        font-size: 1.75rem;
        flex-direction: column;
    }

    .header-icon[b-i4q9j1arcu] {
        width: 36px;
        height: 36px;
    }

    .documentation-tabs[b-i4q9j1arcu] {
        flex-direction: column;
    }

    .tab-button[b-i4q9j1arcu] {
        width: 100%;
    }

    .documentation-content[b-i4q9j1arcu] {
        padding: 1rem;
    }

    .highlights-grid[b-i4q9j1arcu] {
        grid-template-columns: 1fr;
    }

    .code-example pre[b-i4q9j1arcu] {
        font-size: 0.75rem;
        padding: 1rem;
    }
}

@media print {
    .documentation-header[b-i4q9j1arcu],
    .documentation-tabs[b-i4q9j1arcu] {
        display: none;
    }

    .documentation-content[b-i4q9j1arcu] {
        box-shadow: none;
    }
}
/* /Components/Shared/FloatingChat.razor.rz.scp.css */
.floating-chat-container[b-x3iuxcslop] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Minimized button */
.floating-chat-button[b-x3iuxcslop] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.floating-chat-button:hover[b-x3iuxcslop] {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.5);
}

.floating-chat-button svg[b-x3iuxcslop] {
    width: 28px;
    height: 28px;
    color: white;
}

.floating-chat-badge[b-x3iuxcslop] {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* Expanded window */
.floating-chat-window[b-x3iuxcslop] {
    width: 360px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.floating-chat-header[b-x3iuxcslop] {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.floating-chat-header h6[b-x3iuxcslop] {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-chat-header svg[b-x3iuxcslop] {
    width: 20px;
    height: 20px;
}

.floating-chat-actions[b-x3iuxcslop] {
    display: flex;
    gap: 8px;
}

.floating-chat-action-btn[b-x3iuxcslop] {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.floating-chat-action-btn:hover[b-x3iuxcslop] {
    background: rgba(255, 255, 255, 0.3);
}

.floating-chat-action-btn svg[b-x3iuxcslop] {
    width: 18px;
    height: 18px;
}

.floating-chat-body[b-x3iuxcslop] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Tabs */
.floating-chat-tabs[b-x3iuxcslop] {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    background: white;
}

.floating-tab-btn[b-x3iuxcslop] {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.floating-tab-btn:hover[b-x3iuxcslop] {
    background: #f9fafb;
}

.floating-tab-btn.active[b-x3iuxcslop] {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
}

/* Search */
.floating-chat-search[b-x3iuxcslop] {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-icon[b-x3iuxcslop] {
    width: 18px;
    height: 18px;
    color: #9ca3af;
}

.floating-chat-search input[b-x3iuxcslop] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #1f2937;
}

.floating-chat-search input[b-x3iuxcslop]::placeholder {
    color: #9ca3af;
}

/* Users list */
.floating-chat-users[b-x3iuxcslop] {
    flex: 1;
    overflow-y: auto;
}

.floating-user-item[b-x3iuxcslop] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f3f4f6;
}

.floating-user-item:hover[b-x3iuxcslop] {
    background: #f9fafb;
}

.floating-user-avatar[b-x3iuxcslop] {
    position: relative;
    flex-shrink: 0;
}

.avatar-circle[b-x3iuxcslop] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.group-avatar .avatar-circle[b-x3iuxcslop] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.status-dot[b-x3iuxcslop] {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border: 2px solid white;
    border-radius: 50%;
}

.floating-user-info[b-x3iuxcslop] {
    flex: 1;
    min-width: 0;
}

.floating-user-name[b-x3iuxcslop] {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-user-email[b-x3iuxcslop] {
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-unread-badge[b-x3iuxcslop] {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Conversation */
.floating-chat-conversation-header[b-x3iuxcslop] {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.back-button[b-x3iuxcslop] {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.back-button:hover[b-x3iuxcslop] {
    background: #e5e7eb;
}

.back-button svg[b-x3iuxcslop] {
    width: 18px;
    height: 18px;
    color: #1f2937;
}

.conversation-user-info[b-x3iuxcslop] {
    flex: 1;
}

.conversation-user-name[b-x3iuxcslop] {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.conversation-user-status[b-x3iuxcslop] {
    font-size: 12px;
    color: #6b7280;
}

.conversation-user-status.online[b-x3iuxcslop] {
    color: #10b981;
}

/* Messages */
.floating-messages-container[b-x3iuxcslop] {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f9fafb;
}

.floating-message[b-x3iuxcslop] {
    display: flex;
    flex-direction: column;
    max-width: 75%;
}

.floating-message.sent[b-x3iuxcslop] {
    align-self: flex-end;
}

.floating-message.received[b-x3iuxcslop] {
    align-self: flex-start;
}

.floating-message-sender[b-x3iuxcslop] {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 4px;
    margin-left: 4px;
}

.floating-message-content[b-x3iuxcslop] {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.floating-message.sent .floating-message-content[b-x3iuxcslop] {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.floating-message.received .floating-message-content[b-x3iuxcslop] {
    background: white;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    border-bottom-left-radius: 4px;
}

.floating-message-time[b-x3iuxcslop] {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.floating-message.sent .floating-message-time[b-x3iuxcslop] {
    align-self: flex-end;
}

.read-icon[b-x3iuxcslop] {
    width: 12px;
    height: 12px;
    color: #0ea5e9;
}

/* Message input */
.floating-message-input[b-x3iuxcslop] {
    padding: 12px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 8px;
    align-items: flex-end;
    background: white;
}

.floating-message-input textarea[b-x3iuxcslop] {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    resize: none;
    outline: none;
    font-family: inherit;
    max-height: 80px;
}

.floating-message-input textarea:focus[b-x3iuxcslop] {
    border-color: #0ea5e9;
}

.send-button[b-x3iuxcslop] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.send-button:hover:not(:disabled)[b-x3iuxcslop] {
    transform: scale(1.1);
}

.send-button:disabled[b-x3iuxcslop] {
    opacity: 0.5;
    cursor: not-allowed;
}

.send-button svg[b-x3iuxcslop] {
    width: 18px;
    height: 18px;
    color: white;
}

/* Scrollbar styling */
.floating-chat-users[b-x3iuxcslop]::-webkit-scrollbar,
.floating-messages-container[b-x3iuxcslop]::-webkit-scrollbar {
    width: 6px;
}

.floating-chat-users[b-x3iuxcslop]::-webkit-scrollbar-track,
.floating-messages-container[b-x3iuxcslop]::-webkit-scrollbar-track {
    background: transparent;
}

.floating-chat-users[b-x3iuxcslop]::-webkit-scrollbar-thumb,
.floating-messages-container[b-x3iuxcslop]::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.floating-chat-users[b-x3iuxcslop]::-webkit-scrollbar-thumb:hover,
.floating-messages-container[b-x3iuxcslop]::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-chat-container[b-x3iuxcslop] {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-chat-window[b-x3iuxcslop] {
        width: calc(100vw - 20px);
        max-width: 360px;
        height: 500px;
    }
}
