/* /Components/ChatAssistant.razor.rz.scp.css */
.chat-assistant[b-nv6boiz8sq] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Toggle Button */
.chat-toggle[b-nv6boiz8sq] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.chat-toggle:hover[b-nv6boiz8sq] {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
}

.notification-badge[b-nv6boiz8sq] {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background: #dc3545;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse-b-nv6boiz8sq 1.5s infinite;
}

@keyframes pulse-b-nv6boiz8sq {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Chat Window */
.chat-window[b-nv6boiz8sq] {
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp-b-nv6boiz8sq 0.3s ease-out;
}

@keyframes slideUp-b-nv6boiz8sq {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.chat-header[b-nv6boiz8sq] {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.chat-header button[b-nv6boiz8sq] {
    color: white;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chat-header button:hover[b-nv6boiz8sq] {
    opacity: 1;
}

/* Messages Area */
.chat-messages[b-nv6boiz8sq] {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8f9fa;
}

/* Welcome Message */
.welcome-message[b-nv6boiz8sq] {
    text-align: center;
    padding: 20px;
}

.welcome-icon[b-nv6boiz8sq] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 28px;
}

.welcome-message h5[b-nv6boiz8sq] {
    margin-bottom: 10px;
    color: #333;
}

.welcome-message p[b-nv6boiz8sq] {
    color: #666;
    margin-bottom: 20px;
}

.quick-actions[b-nv6boiz8sq] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.quick-action-btn[b-nv6boiz8sq] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 13px;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-action-btn:hover[b-nv6boiz8sq] {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

/* Message Bubbles */
.message[b-nv6boiz8sq] {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    max-width: 90%;
}

.message.user[b-nv6boiz8sq] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message.assistant[b-nv6boiz8sq] {
    align-self: flex-start;
}

.message-avatar[b-nv6boiz8sq] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.message.user .message-avatar[b-nv6boiz8sq] {
    background: #e9ecef;
    color: #495057;
}

.message.assistant .message-avatar[b-nv6boiz8sq] {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
}

.message-content[b-nv6boiz8sq] {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.message.user .message-content[b-nv6boiz8sq] {
    background: #0d6efd;
    color: white;
    border-bottom-right-radius: 4px;
}

.message.assistant .message-content[b-nv6boiz8sq] {
    background: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.message-content code[b-nv6boiz8sq] {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}

/* Typing Indicator */
.message-content.typing[b-nv6boiz8sq] {
    padding: 15px 18px;
}

.typing-indicator[b-nv6boiz8sq] {
    display: flex;
    gap: 4px;
}

.typing-indicator span[b-nv6boiz8sq] {
    width: 8px;
    height: 8px;
    background: #adb5bd;
    border-radius: 50%;
    animation: typing-b-nv6boiz8sq 1.4s infinite ease-in-out;
}

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

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

@keyframes typing-b-nv6boiz8sq {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* Input Area */
.chat-input[b-nv6boiz8sq] {
    padding: 15px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
    background: white;
}

.chat-input input[b-nv6boiz8sq] {
    flex: 1;
    border: 1px solid #dee2e6;
    border-radius: 24px;
    padding: 12px 18px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.chat-input input:focus[b-nv6boiz8sq] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.chat-input input:disabled[b-nv6boiz8sq] {
    background: #f8f9fa;
}

.send-button[b-nv6boiz8sq] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0d6efd;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-button:hover:not(:disabled)[b-nv6boiz8sq] {
    background: #0a58ca;
    transform: scale(1.05);
}

.send-button:disabled[b-nv6boiz8sq] {
    background: #adb5bd;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 480px) {
    .chat-assistant[b-nv6boiz8sq] {
        bottom: 10px;
        right: 10px;
    }

    .chat-window[b-nv6boiz8sq] {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        max-height: 600px;
    }

    .chat-toggle[b-nv6boiz8sq] {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Scrollbar */
.chat-messages[b-nv6boiz8sq]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-nv6boiz8sq]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages[b-nv6boiz8sq]::-webkit-scrollbar-thumb {
    background: #ced4da;
    border-radius: 3px;
}

.chat-messages[b-nv6boiz8sq]::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}
/* /Components/HelpButton.razor.rz.scp.css */
.help-button[b-aqfinkxrck] {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.help-button:hover[b-aqfinkxrck] {
    opacity: 1;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-oudk68ztbc] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-oudk68ztbc] {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

    .top-row[b-oudk68ztbc], article[b-oudk68ztbc] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-k1vvdstgr1] {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.top-row[b-k1vvdstgr1] {
    height: 3.5rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-icon[b-k1vvdstgr1] {
    font-size: 1.1rem;
    width: 1.25rem;
    margin-right: 0.75rem;
    text-align: center;
}

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

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

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

    .nav-item[b-k1vvdstgr1]  a,
    .nav-item[b-k1vvdstgr1]  button {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

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

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

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

    .collapse[b-k1vvdstgr1] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-k1vvdstgr1] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Help/HelpIndex.razor.rz.scp.css */
.help-card[b-1obj8oymda] {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.help-card:hover[b-1obj8oymda] {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.help-icon[b-1obj8oymda] {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
