/* /Components/Layout/ChatWindow.razor.rz.scp.css */
/* ===== AI Panel Container ===== */
.ai-panel-container[b-e52c07fvpv] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #ffffff;
}

/* ===== Panel Header ===== */
.ai-panel-header[b-e52c07fvpv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #4682B4 0%, #5a9fd4 100%);
    color: #ffffff;
    flex-shrink: 0;
}

.ai-panel-title[b-e52c07fvpv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.ai-panel-close[b-e52c07fvpv] {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    line-height: 1;
}

.ai-panel-close:hover[b-e52c07fvpv] {
    background: rgba(255, 255, 255, 0.25);
}

/* ===== Model Selector (Owner only) ===== */
.ai-model-selector[b-e52c07fvpv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: #f0f4f8;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.78rem;
    flex-shrink: 0;
}

    .ai-model-selector label[b-e52c07fvpv] {
        color: #64748b;
        font-weight: 600;
        margin: 0;
        white-space: nowrap;
    }

    .ai-model-selector select[b-e52c07fvpv] {
        flex: 1;
        padding: 0.2rem 0.4rem;
        border: 1px solid #cbd5e1;
        border-radius: 4px;
        font-size: 0.78rem;
        background: #ffffff;
        color: #334155;
    }

/* ===== Welcome State ===== */
.ai-welcome[b-e52c07fvpv] {
    text-align: center;
    padding: 2rem 1.5rem;
    color: #475569;
}

.ai-welcome-icon[b-e52c07fvpv] {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ai-welcome h6[b-e52c07fvpv] {
    font-size: 1rem;
    font-weight: 600;
    color: #4682B4;
    margin-bottom: 0.5rem;
}

.ai-welcome p[b-e52c07fvpv] {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.ai-welcome ul[b-e52c07fvpv] {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.ai-welcome ul li[b-e52c07fvpv] {
    font-size: 0.825rem;
    color: #475569;
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.ai-welcome ul li[b-e52c07fvpv]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4682B4;
}

/* ===== Messages Area ===== */

/* ===== Suggested Prompt Chips ===== */
.suggested-prompts[b-e52c07fvpv] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.suggested-chip[b-e52c07fvpv] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    background: #f0f4ff;
    border: 1px solid #c7d7f0;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s ease;
    color: #1e3a5f;
    font-size: 0.825rem;
    line-height: 1.35;
}

.suggested-chip:hover:not(:disabled)[b-e52c07fvpv] {
    background: #dce8fa;
    border-color: #4682B4;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(70, 130, 180, 0.15);
}

.suggested-chip:disabled[b-e52c07fvpv] {
    opacity: 0.5;
    cursor: not-allowed;
}

.chip-icon[b-e52c07fvpv] {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.chip-label[b-e52c07fvpv] {
    font-weight: 500;
}

/* ===== Messages Area (continued) ===== */
.ai-panel-messages[b-e52c07fvpv] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.chat-message[b-e52c07fvpv] {
    display: flex;
    flex-direction: column;
    max-width: 90%;
    animation: messageIn 0.2s ease-out;
}

.chat-message.user[b-e52c07fvpv] {
    align-self: flex-end;
}

.chat-message.assistant[b-e52c07fvpv] {
    align-self: flex-start;
}

.agent-label[b-e52c07fvpv] {
    font-size: 0.65rem;
    color: #94a3b8;
    margin-bottom: 2px;
    padding-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.message-bubble[b-e52c07fvpv] {
    padding: 0.625rem 0.875rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-message.user .message-bubble[b-e52c07fvpv] {
    background: linear-gradient(135deg, #4682B4 0%, #5a9fd4 100%);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.chat-message.assistant .message-bubble[b-e52c07fvpv] {
    background-color: #f1f5f9;
    color: #1e293b;
    border-bottom-left-radius: 4px;
    border: 1px solid #e2e8f0;
}

/* ===== Typing Indicator ===== */
.message-bubble.typing[b-e52c07fvpv] {
    display: flex;
    gap: 5px;
    padding: 0.75rem 1rem;
}

.message-bubble.typing .dot[b-e52c07fvpv] {
    width: 7px;
    height: 7px;
    background: #94a3b8;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.message-bubble.typing .dot:nth-child(2)[b-e52c07fvpv] {
    animation-delay: 0.2s;
}

.message-bubble.typing .dot:nth-child(3)[b-e52c07fvpv] {
    animation-delay: 0.4s;
}

@@keyframes typing {
    0%[b-e52c07fvpv], 60%[b-e52c07fvpv], 100%[b-e52c07fvpv] { transform: translateY(0); }
    30%[b-e52c07fvpv] { transform: translateY(-5px); }
}

@@keyframes messageIn {
    from[b-e52c07fvpv] { opacity: 0; transform: translateY(8px); }
    to[b-e52c07fvpv] { opacity: 1; transform: translateY(0); }
}

/* ===== Input Area ===== */
.ai-panel-input[b-e52c07fvpv] {
    padding: 0.75rem 1rem;
    border-top: 1px solid #e2e8f0;
    background: #fafbfc;
    flex-shrink: 0;
}

.ai-panel-input .form-control[b-e52c07fvpv] {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ai-panel-input .form-control:focus[b-e52c07fvpv] {
    border-color: #4682B4;
    box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.15);
}

.send-btn[b-e52c07fvpv] {
    background: linear-gradient(135deg, #4682B4 0%, #5a9fd4 100%);
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.send-btn:hover:not(:disabled)[b-e52c07fvpv] {
    background: linear-gradient(135deg, #5a9fd4 0%, #6bb3e0 100%);
}

.send-btn:disabled[b-e52c07fvpv] {
    opacity: 0.5;
}
/* /Components/Layout/InsuranceAssistant.razor.rz.scp.css */
/* ===== AI Panel ===== */
.ai-panel[b-inyj0vdjyu] {
    flex-shrink: 0;
    background: #ffffff;
    border-left: 1px solid #e2e8f0;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
}

.resize-handle[b-inyj0vdjyu] {
    width: 5px;
    cursor: col-resize;
    background: transparent;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    transition: background 0.15s ease;
}

.resize-handle:hover[b-inyj0vdjyu],
.resize-handle:active[b-inyj0vdjyu] {
    background: #4682B4;
}

/* ===== Responsive ===== */
@media (max-width: 640.98px) {
    .ai-panel[b-inyj0vdjyu] {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        z-index: 1000;
        width: 100vw !important;
    }
}
/* /Components/Layout/LoginLayout.razor.rz.scp.css */
.login-layout[b-rng03rwq82] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2b5b 0%, #1a3a6e 40%, #2c5282 100%);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ===== Corporate Theme Variables ===== */

/* ===== Fictitious Company Disclaimer ===== */
.demo-disclaimer-bar[b-d8308bzpp9] {
    background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    border-bottom: 1px solid #f59e0b;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    width: 100%;
}

.page[b-d8308bzpp9] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 1.75rem;  /* offset for the fixed disclaimer bar */
}

.main-area[b-d8308bzpp9] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== Sidebar ===== */
.sidebar[b-d8308bzpp9] {
    background: linear-gradient(170deg, #1e3a5f 0%, #2a5480 35%, #1e3a5f 65%, #16304f 100%);
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
}

/* ===== Top Bar ===== */
.top-row[b-d8308bzpp9] {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.top-row-left[b-d8308bzpp9] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-text[b-d8308bzpp9] {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.top-row-right[b-d8308bzpp9] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.top-row[b-d8308bzpp9]  a, .top-row[b-d8308bzpp9]  .btn-link {
    white-space: nowrap;
    margin-left: 0.5rem;
    text-decoration: none;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.top-row[b-d8308bzpp9]  a:hover, .top-row[b-d8308bzpp9]  .btn-link:hover {
    text-decoration: none;
    background-color: #edf2f7;
    color: #4682B4;
}

/* ===== AI Assistant Button ===== */
.ai-assistant-btn[b-d8308bzpp9] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem;
    margin-left: 0.75rem;
    background: linear-gradient(135deg, #4682B4 0%, #5a9fd4 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 6px rgba(70, 130, 180, 0.35);
}

.ai-assistant-btn:hover[b-d8308bzpp9] {
    background: linear-gradient(135deg, #5a9fd4 0%, #6bb3e0 100%);
    box-shadow: 0 4px 14px rgba(70, 130, 180, 0.45);
    transform: translateY(-1px);
}

.ai-assistant-btn:active[b-d8308bzpp9] {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(15, 43, 91, 0.3);
}

.ai-btn-label[b-d8308bzpp9] {
    line-height: 1;
}

/* ===== Content Area ===== */

/* ===== User Badge ===== */
.user-badge[b-d8308bzpp9] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: #f1f5f9;
}

.user-avatar[b-d8308bzpp9] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.user-name[b-d8308bzpp9] {
    font-size: 0.8rem;
    font-weight: 500;
    color: #334155;
    white-space: nowrap;
}

/* ===== Content Area ===== */
.content-wrapper[b-d8308bzpp9] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.content-wrapper > article.content[b-d8308bzpp9] {
    flex: 1;
    overflow-y: auto;
    padding-top: 1.5rem;
    min-width: 0;
}

/* ===== AI Panel ===== */
.ai-panel[b-d8308bzpp9] {
    flex-shrink: 0;
    height: calc(100vh - 3.5rem);
    background: #ffffff;
    border-left: 1px solid #e2e8f0;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
}

.resize-handle[b-d8308bzpp9] {
    width: 5px;
    cursor: col-resize;
    background: transparent;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    transition: background 0.15s ease;
}

.resize-handle:hover[b-d8308bzpp9],
.resize-handle:active[b-d8308bzpp9] {
    background: #4682B4;
}

/* ===== Error UI ===== */
#blazor-error-ui[b-d8308bzpp9] {
    color-scheme: light only;
    background: #fef3c7;
    bottom: 0;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #92400e;
    font-size: 0.875rem;
}

#blazor-error-ui .dismiss[b-d8308bzpp9] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 640.98px) {
    .top-row[b-d8308bzpp9] {
        justify-content: space-between;
    }

    .top-row[b-d8308bzpp9]  a, .top-row[b-d8308bzpp9]  .btn-link {
        margin-left: 0;
    }

    .ai-btn-label[b-d8308bzpp9] {
        display: none;
    }

    .ai-panel[b-d8308bzpp9] {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        z-index: 1000;
        width: 100vw !important;
    }
}

@media (min-width: 641px) {
    .page[b-d8308bzpp9] {
        flex-direction: row;
    }

    .sidebar[b-d8308bzpp9] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-d8308bzpp9] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-d8308bzpp9], article[b-d8308bzpp9] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-xk8eg9inv9] {
    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-xk8eg9inv9] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-xk8eg9inv9] {
    min-height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand[b-xk8eg9inv9] {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.navbar-demo-tag[b-xk8eg9inv9] {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 3px;
    padding: 0.1rem 0.4rem;
    vertical-align: middle;
    margin-left: 0.25rem;
}

.bi[b-xk8eg9inv9] {
    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-xk8eg9inv9] {
    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-xk8eg9inv9] {
    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-xk8eg9inv9] {
    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-xk8eg9inv9] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-xk8eg9inv9] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-xk8eg9inv9] {
        padding-bottom: 1rem;
    }

    .nav-item[b-xk8eg9inv9]  .nav-link {
        color: rgba(255, 255, 255, 0.7);
        background: none;
        border: none;
        border-radius: 6px;
        height: 2.75rem;
        display: flex;
        align-items: center;
        line-height: 2.75rem;
        width: 100%;
        font-weight: 500;
        font-size: 0.85rem;
        transition: all 0.15s ease;
    }

.nav-item[b-xk8eg9inv9]  a.active {
    background-color: rgba(70, 130, 180, 0.35);
    color: #ffffff;
    font-weight: 600;
}

.nav-item[b-xk8eg9inv9]  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.nav-scrollable[b-xk8eg9inv9] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-xk8eg9inv9] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-xk8eg9inv9] {
        display: none;
    }

    .nav-scrollable[b-xk8eg9inv9] {
        /* 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/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-qm8bnfdnd5],
.components-reconnect-repeated-attempt-visible[b-qm8bnfdnd5],
.components-reconnect-failed-visible[b-qm8bnfdnd5],
.components-pause-visible[b-qm8bnfdnd5],
.components-resume-failed-visible[b-qm8bnfdnd5],
.components-rejoining-animation[b-qm8bnfdnd5] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-qm8bnfdnd5],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-qm8bnfdnd5],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-qm8bnfdnd5],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-qm8bnfdnd5],
#components-reconnect-modal.components-reconnect-retrying[b-qm8bnfdnd5],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-qm8bnfdnd5],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-qm8bnfdnd5],
#components-reconnect-modal.components-reconnect-failed[b-qm8bnfdnd5],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-qm8bnfdnd5] {
    display: block;
}


#components-reconnect-modal[b-qm8bnfdnd5] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-qm8bnfdnd5 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-qm8bnfdnd5 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-qm8bnfdnd5 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-qm8bnfdnd5]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-qm8bnfdnd5 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-qm8bnfdnd5 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-qm8bnfdnd5 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-qm8bnfdnd5 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-qm8bnfdnd5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-qm8bnfdnd5] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-qm8bnfdnd5] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-qm8bnfdnd5] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-qm8bnfdnd5] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-qm8bnfdnd5] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-qm8bnfdnd5] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-qm8bnfdnd5 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-qm8bnfdnd5] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-qm8bnfdnd5 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ===== Hero Section ===== */
.hero-section[b-nsn3l52ihi] {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1514565131-fce0801e5785?w=1920&q=80&auto=format');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

.hero-overlay[b-nsn3l52ihi] {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.88) 0%, rgba(42, 84, 128, 0.72) 40%, rgba(70, 130, 180, 0.45) 100%);
}

.hero-content[b-nsn3l52ihi] {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    color: #ffffff;
}

.hero-badge[b-nsn3l52ihi] {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}

.hero-title[b-nsn3l52ihi] {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    max-width: 600px;
}

.hero-subtitle[b-nsn3l52ihi] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-actions[b-nsn3l52ihi] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-btn-primary[b-nsn3l52ihi] {
    background: #ffffff;
    color: #4682B4;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 2rem;
    border-radius: 6px;
    border: none;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.hero-btn-primary:hover[b-nsn3l52ihi] {
    background: #edf2f7;
    color: #2a5480;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary[b-nsn3l52ihi] {
    background: transparent;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.7rem 2rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.2s ease;
}

.hero-btn-secondary:hover[b-nsn3l52ihi] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* ===== Quick Actions Bar ===== */
.quick-actions[b-nsn3l52ihi] {
    background: linear-gradient(135deg, #4682B4 0%, #5a9fd4 100%);
}

.quick-action-item[b-nsn3l52ihi] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.15s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-action-item:last-child[b-nsn3l52ihi] {
    border-right: none;
}

.quick-action-item:hover[b-nsn3l52ihi] {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
}

/* ===== Section Headings ===== */
.section-heading[b-nsn3l52ihi] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d2137;
    letter-spacing: -0.01em;
}

.section-subheading[b-nsn3l52ihi] {
    color: #6b7c93;
    font-size: 1rem;
    margin-bottom: 0;
}

/* ===== Coverage Cards ===== */
.coverage-card[b-nsn3l52ihi] {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.2s ease;
    position: relative;
}

.coverage-card:hover[b-nsn3l52ihi] {
    border-color: #c5d0dc;
    box-shadow: 0 8px 30px rgba(0, 30, 60, 0.08);
    transform: translateY(-2px);
}

.coverage-icon[b-nsn3l52ihi] {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.coverage-card h4[b-nsn3l52ihi] {
    font-size: 1.15rem;
    font-weight: 650;
    color: #1a2332;
    margin-bottom: 0.625rem;
}

.coverage-card p[b-nsn3l52ihi] {
    font-size: 0.9rem;
    color: #5a6a7e;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.coverage-link[b-nsn3l52ihi] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4682B4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.15s ease;
}

.coverage-link:hover[b-nsn3l52ihi] {
    color: #5a9fd4;
    gap: 0.5rem;
    text-decoration: none;
}

/* ===== Why Section ===== */
.why-section[b-nsn3l52ihi] {
    background: #f7f9fb;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.why-section .section-heading[b-nsn3l52ihi] {
    margin-bottom: 0.75rem;
}

.feature-card[b-nsn3l52ihi] {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.15s ease;
}

.feature-card:hover[b-nsn3l52ihi] {
    border-color: #4682B4;
}

.feature-number[b-nsn3l52ihi] {
    font-size: 0.7rem;
    font-weight: 700;
    color: #4682B4;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.feature-card h6[b-nsn3l52ihi] {
    font-size: 0.95rem;
    font-weight: 650;
    color: #0d2137;
    margin-bottom: 0.375rem;
}

.feature-card p[b-nsn3l52ihi] {
    font-size: 0.825rem;
    color: #5a6a7e;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ===== Responsive ===== */
@@media (max-width: 768px) {
    .hero-title[b-nsn3l52ihi] {
        font-size: 2.25rem;
    }

    .hero-section[b-nsn3l52ihi] {
        min-height: 380px;
    }

    .hero-content[b-nsn3l52ihi] {
        padding: 2.5rem 0;
    }

    .why-section[b-nsn3l52ihi] {
        padding: 1.5rem;
    }

    .quick-action-item[b-nsn3l52ihi] {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login-container[b-jjolrypy4a] {
    width: 100%;
    max-width: 700px;
    padding: 2.5rem;
}

.login-header[b-jjolrypy4a] {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

    .login-header h2[b-jjolrypy4a] {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

.login-subtitle[b-jjolrypy4a] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.persona-grid[b-jjolrypy4a] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.persona-card[b-jjolrypy4a] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

    .persona-card:hover[b-jjolrypy4a] {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-1px);
    }

.persona-avatar[b-jjolrypy4a] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    flex-shrink: 0;
}

.persona-info[b-jjolrypy4a] {
    flex: 1;
    min-width: 0;
}

    .persona-info h5[b-jjolrypy4a] {
        margin: 0;
        color: #ffffff;
        font-size: 1rem;
        font-weight: 600;
    }

.persona-role[b-jjolrypy4a] {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    margin-top: 0.15rem;
}

.persona-desc[b-jjolrypy4a] {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

.login-footer[b-jjolrypy4a] {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.35);
}

    .login-footer small[b-jjolrypy4a] {
        font-size: 0.78rem;
    }
