@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lcdo7z9xd2.bundle.scp.css';

/* /Components/AiChat/AiChatPanel.razor.rz.scp.css */
.ai-chat-container[b-nl3j3bsh44] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ai-fab[b-nl3j3bsh44] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0078D4, #005A9E);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-fab:hover[b-nl3j3bsh44] {
    transform: scale(1.1);
}

.pulsing[b-nl3j3bsh44] {
    animation: pulse-ring-b-nl3j3bsh44 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring-b-nl3j3bsh44 {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 120, 212, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 120, 212, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 120, 212, 0);
    }
}

.ai-panel[b-nl3j3bsh44] {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 120px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-chat-container.open .ai-panel[b-nl3j3bsh44] {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

.ai-header[b-nl3j3bsh44] {
    background: #f8f9fa;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eef0f2;
}

.ai-header-title[b-nl3j3bsh44] {
    display: flex;
    align-items: center;
    color: #212529;
}

.ai-body[b-nl3j3bsh44] {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-welcome[b-nl3j3bsh44] {
    text-align: center;
    color: #495057;
    margin-top: 32px;
}

.ai-quick-prompts[b-nl3j3bsh44] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.ai-prompt-chip[b-nl3j3bsh44] {
    background: #e9ecef;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.ai-prompt-chip:hover[b-nl3j3bsh44] {
    background: #dee2e6;
}

.ai-message[b-nl3j3bsh44] {
    display: flex;
    flex-direction: column;
    max-width: 90%;
}

.user-msg[b-nl3j3bsh44] {
    align-self: flex-end;
}

.user-msg .ai-bubble[b-nl3j3bsh44] {
    background: #0078D4;
    color: #fff;
    border-radius: 16px 16px 4px 16px;
}

.ai-msg[b-nl3j3bsh44] {
    align-self: flex-start;
}

.ai-msg .ai-bubble[b-nl3j3bsh44] {
    background: #fff;
    color: #212529;
    border: 1px solid #eef0f2;
    border-radius: 16px 16px 16px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.ai-error .ai-bubble[b-nl3j3bsh44] {
    background: #fff5f5;
    color: #c92a2a;
    border-color: #ffc9c9;
}

.ai-bubble[b-nl3j3bsh44] {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.ai-bubble p[b-nl3j3bsh44] {
    margin: 0 0 8px 0;
}

.ai-bubble p:last-child[b-nl3j3bsh44] {
    margin: 0;
}

/* Generative UI Components */
.ai-ui-card[b-nl3j3bsh44] {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 16px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 310px;
}

.ai-ui-title[b-nl3j3bsh44] {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.ai-table-wrapper[b-nl3j3bsh44] {
    overflow-x: auto;
}

.ai-data-table[b-nl3j3bsh44] {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.ai-data-table th[b-nl3j3bsh44],
.ai-data-table td[b-nl3j3bsh44] {
    border-bottom: 1px solid #eef0f2;
    padding: 6px;
    text-align: left;
}

.ai-kpi-grid[b-nl3j3bsh44] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ai-kpi-card[b-nl3j3bsh44] {
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #ccc;
    background: #f8f9fa;
}

.ai-kpi-label[b-nl3j3bsh44] {
    font-size: 11px;
    color: #6c757d;
}

.ai-kpi-value[b-nl3j3bsh44] {
    font-size: 16px;
    font-weight: bold;
    margin: 4px 0;
}

.ai-kpi-sub[b-nl3j3bsh44] {
    font-size: 10px;
    color: #adb5bd;
}

.ai-kpi-blue[b-nl3j3bsh44] {
    border-left-color: #0078D4;
}

.ai-kpi-green[b-nl3j3bsh44] {
    border-left-color: #28A745;
}

.ai-kpi-orange[b-nl3j3bsh44] {
    border-left-color: #FD7E14;
}

.ai-kpi-red[b-nl3j3bsh44] {
    border-left-color: #DC3545;
}

.ai-status-list[b-nl3j3bsh44] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-status-item[b-nl3j3bsh44],
.ai-nav-card[b-nl3j3bsh44] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 12px;
}

.ai-nav-card[b-nl3j3bsh44] {
    cursor: pointer;
    transition: background 0.2s;
}

.ai-nav-card:hover[b-nl3j3bsh44] {
    background: #eef0f2;
}

.ai-subtitle[b-nl3j3bsh44] {
    display: block;
    color: #6c757d;
    font-size: 11px;
}

.ai-nav-action[b-nl3j3bsh44] {
    display: flex;
    align-items: center;
}

.ai-cursor[b-nl3j3bsh44] {
    display: inline-block;
    width: 6px;
    height: 14px;
    background: #0078D4;
    animation: blink-b-nl3j3bsh44 1s step-end infinite;
    vertical-align: middle;
    margin-left: 4px;
}

@keyframes blink-b-nl3j3bsh44 {
    50% {
        opacity: 0;
    }
}

.ai-footer[b-nl3j3bsh44] {
    padding: 16px;
    border-top: 1px solid #eef0f2;
    background: #fff;
}

/* Typing Indicator */
.typing-indicator[b-nl3j3bsh44] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 20px;
    padding: 0 4px;
}

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

.typing-indicator span:nth-child(1)[b-nl3j3bsh44] {
    animation-delay: -0.32s;
}

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

@keyframes typing-b-nl3j3bsh44 {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-s3t9he8vpw] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

#blazor-error-ui[b-s3t9he8vpw] {
    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-s3t9he8vpw] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
/* Hidden states */
.components-reconnect-first-attempt-visible[b-m5u67bxqwj],
.components-reconnect-repeated-attempt-visible[b-m5u67bxqwj],
.components-reconnect-failed-visible[b-m5u67bxqwj],
.components-pause-visible[b-m5u67bxqwj],
.components-resume-failed-visible[b-m5u67bxqwj],
.components-rejoining-animation[b-m5u67bxqwj] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-m5u67bxqwj],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-m5u67bxqwj],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-m5u67bxqwj],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-m5u67bxqwj],
#components-reconnect-modal.components-reconnect-retrying[b-m5u67bxqwj],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-m5u67bxqwj],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-m5u67bxqwj],
#components-reconnect-modal.components-reconnect-failed[b-m5u67bxqwj],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-m5u67bxqwj] {
    display: block;
}

/* Modal styling */
#components-reconnect-modal[b-m5u67bxqwj] {
    background-color: #ffffff;
    width: 380px;
    margin: 15vh auto;
    padding: 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-m5u67bxqwj 0.4s both;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #1e293b;
}

#components-reconnect-modal[open][b-m5u67bxqwj] {
    animation: components-reconnect-modal-slideUp-b-m5u67bxqwj 0.6s cubic-bezier(0.16, 1, 0.3, 1), components-reconnect-modal-fadeInOpacity-b-m5u67bxqwj 0.4s ease-in-out;
    animation-fill-mode: both;
}

#components-reconnect-modal[b-m5u67bxqwj]::backdrop {
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    animation: components-reconnect-modal-fadeInOpacity-b-m5u67bxqwj 0.4s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-m5u67bxqwj {
    0% { transform: translateY(20px) scale(0.97); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-m5u67bxqwj {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-m5u67bxqwj {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Container styling */
.components-reconnect-container[b-m5u67bxqwj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    gap: 1.5rem;
}

.components-reconnect-content[b-m5u67bxqwj] {
    text-align: center;
    width: 100%;
}

#components-reconnect-modal p[b-m5u67bxqwj] {
    margin: 0;
    line-height: 1.5;
}

#components-reconnect-modal strong[b-m5u67bxqwj] {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

#components-reconnect-modal span[b-m5u67bxqwj] {
    font-size: 14px;
    color: #64748b;
}

/* Failed state styling */
.failed-state[b-m5u67bxqwj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.error-icon[b-m5u67bxqwj] {
    font-size: 48px;
    color: #ef4444;
    margin-bottom: 12px;
}

/* Button styling */
.btn-retry[b-m5u67bxqwj] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    background-color: #0078D4;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 10px;
}

.btn-retry:hover[b-m5u67bxqwj] {
    background-color: #0060a8;
    box-shadow: 0 4px 6px -1px rgba(0, 120, 212, 0.2);
}

.btn-retry:active[b-m5u67bxqwj] {
    background-color: #004c85;
}

.btn-retry .material-icons[b-m5u67bxqwj] {
    font-size: 18px;
}

/* Spinner Animation */
.components-rejoining-animation[b-m5u67bxqwj] {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner[b-m5u67bxqwj] {
    animation: rotate-b-m5u67bxqwj 2s linear infinite;
    z-index: 2;
    width: 50px;
    height: 50px;
}

.spinner .path[b-m5u67bxqwj] {
    stroke: #0078D4;
    stroke-linecap: round;
    animation: dash-b-m5u67bxqwj 1.5s ease-in-out infinite;
}

@keyframes rotate-b-m5u67bxqwj {
    100% { transform: rotate(360deg); }
}

@keyframes dash-b-m5u67bxqwj {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
