/* /Components/Account/Pages/Manage/NotificationSettings.razor.rz.scp.css */
/* ── Notification icon circles ────────────────────────────────── */
.notif-icon-circle[b-ucl0mqh8t3] {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 45, 142, 0.15);
    color: var(--brand-secondary);
    font-size: 0.95rem;
    flex-shrink: 0;
    border: 1px solid rgba(26, 107, 122, 0.25);
}

[data-bs-theme="dark"] .notif-icon-circle[b-ucl0mqh8t3] {
    background: rgba(26, 107, 122, 0.2);
    color: #3dd8c5;
    border-color: rgba(61, 216, 197, 0.3);
}

/* ── List items — transparent with subtle dividers ───────────── */
.border-color-subtle[b-ucl0mqh8t3] {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-bs-theme="light"] .border-color-subtle[b-ucl0mqh8t3] {
    border-color: rgba(0, 0, 0, 0.06) !important;
}

/* ── Branded toggle switches ─────────────────────────────────── */
.notif-switch .form-check-input[b-ucl0mqh8t3] {
    width: 2.75em;
    height: 1.4em;
    cursor: pointer;
    border: 2px solid var(--surface-border);
    background-color: var(--surface-muted);
    transition: all 0.2s ease;
}

.notif-switch .form-check-input:checked[b-ucl0mqh8t3] {
    background-color: var(--brand-secondary);
    border-color: var(--brand-secondary);
}

.notif-switch .form-check-input:focus[b-ucl0mqh8t3] {
    box-shadow: 0 0 0 0.2rem rgba(26, 107, 122, 0.25);
    border-color: var(--brand-secondary);
}

.notif-switch .form-check-input:disabled[b-ucl0mqh8t3] {
    opacity: 0.4;
    cursor: not-allowed;
}
/* /Components/Admin/UserAvatar.razor.rz.scp.css */
/* ── UserAvatar — scoped styles ────────────────────────────── */

.user-avatar-wrapper[b-w46herd25y] {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
}

.user-avatar-status-dot[b-w46herd25y] {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    border: 2px solid var(--surface-bg, #0f1524);
    z-index: 2;
}

.user-avatar-status-dot.online[b-w46herd25y] {
    background: #22c55e;
    animation: avatarPulse-b-w46herd25y 2s ease-in-out infinite;
}

.user-avatar-status-dot.away[b-w46herd25y] {
    background: #eab308;
    animation: avatarPulseAway-b-w46herd25y 2s ease-in-out infinite;
}

@keyframes avatarPulse-b-w46herd25y {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

@keyframes avatarPulseAway-b-w46herd25y {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(234, 179, 8, 0); }
}
/* /Components/AI/AiChatPanel.razor.rz.scp.css */
/* =============================================
   AI Chat Panel — Right-side offcanvas chat
   Full-screen on mobile, panel on desktop
   ============================================= */

/* -- Offcanvas sizing ----------------------- */
.ai-chat-offcanvas[b-ti4jez96fu] {
    width: min(440px, 100vw) !important;
}

/* -- Header --------------------------------- */
.ai-chat-header[b-ti4jez96fu] {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* -- Body layout ---------------------------- */
.ai-chat-body[b-ti4jez96fu] {
    background: rgba(15, 23, 42, 0.92);
    overflow: hidden;
}

/* -- Messages area (scrollable) ------------- */
.ai-chat-messages[b-ti4jez96fu] {
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* -- Empty state ---------------------------- */
.ai-chat-empty[b-ti4jez96fu] {
    padding: 1rem 1rem 0.5rem;
    gap: 0.15rem;
}

.acp-hero-avatar[b-ti4jez96fu] {
    width: 100px;
    height: 100px;
    min-width: 100px;
}

/* -- Chat Bubbles --------------------------- */
.acp-bubble[b-ti4jez96fu] {
    display: flex;
    gap: 0;
    align-items: flex-start;
    max-width: 90%;
    animation: acpFadeIn-b-ti4jez96fu 0.25s ease-out;
}

@keyframes acpFadeIn-b-ti4jez96fu {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.acp-bubble-user[b-ti4jez96fu] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.acp-bubble-bot[b-ti4jez96fu] {
    align-self: flex-start;
}

.acp-bubble-bot .acp-avatar[b-ti4jez96fu] {
    margin-right: -14px;
}

.acp-bubble-user .acp-avatar[b-ti4jez96fu] {
    margin-left: -14px;
}

.acp-bubble-bot .acp-content[b-ti4jez96fu] {
    margin-left: 0;
}

.acp-bubble-user .acp-content[b-ti4jez96fu] {
    margin-right: 0;
}

/* -- Avatar --------------------------------- */
.acp-avatar[b-ti4jez96fu] {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    z-index: 2;
    position: relative;
}

.acp-avatar img[b-ti4jez96fu] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acp-avatar-user[b-ti4jez96fu] {
    background: rgba(91, 45, 142, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.acp-avatar-user:has(img)[b-ti4jez96fu] {
    border-color: rgba(139, 92, 246, 0.3);
    background: transparent;
}

.acp-avatar-initials[b-ti4jez96fu] {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    line-height: 1;
}

.acp-avatar-user .bi-person-circle[b-ti4jez96fu] {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Speaking ring glow */
.acp-avatar-speaking[b-ti4jez96fu] {
    border-color: rgba(139, 92, 246, 0.7);
    animation: acpSpeakRing-b-ti4jez96fu 1.5s ease-in-out infinite;
}

@keyframes acpSpeakRing-b-ti4jez96fu {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50%      { box-shadow: 0 0 0 5px rgba(139, 92, 246, 0); }
}

/* -- Bubble Content ------------------------- */
.acp-content[b-ti4jez96fu] {
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-size: 0.84rem;
    line-height: 1.55;
    word-break: break-word;
    white-space: pre-wrap;
    text-align: left;
}

.acp-content-user[b-ti4jez96fu] {
    background: rgba(91, 45, 142, 0.5);
    color: rgba(255, 255, 255, 0.95);
    border-bottom-right-radius: 3px;
}

.acp-content-bot[b-ti4jez96fu] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    border-bottom-left-radius: 3px;
}

/* -- Speak Button --------------------------- */
.acp-speak-btn[b-ti4jez96fu] {
    display: inline-flex;
    align-items: center;
    margin-top: 0.3rem;
    padding: 0.1rem 0.4rem;
    border-radius: 0.35rem;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.acp-speak-btn:hover:not(:disabled)[b-ti4jez96fu] {
    background: rgba(139, 92, 246, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.acp-speak-btn:disabled[b-ti4jez96fu] {
    opacity: 0.3;
    cursor: default;
}

/* -- Typing Indicator ----------------------- */
.acp-typing[b-ti4jez96fu] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 0;
}

.acp-typing span[b-ti4jez96fu] {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(196, 181, 253, 0.7);
    animation: acpDot-b-ti4jez96fu 1.4s infinite ease-in-out;
}

.acp-typing span:nth-child(2)[b-ti4jez96fu] { animation-delay: 0.15s; }
.acp-typing span:nth-child(3)[b-ti4jez96fu] { animation-delay: 0.3s; }

@keyframes acpDot-b-ti4jez96fu {
    0%, 60%, 100% { opacity: 0.25; transform: scale(0.85); }
    30% { opacity: 1; transform: scale(1.15); }
}

/* -- Suggestion Pills (floating chips) ------ */
.acp-suggestions[b-ti4jez96fu] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
    max-width: 400px;
    animation: acpFadeIn-b-ti4jez96fu 0.4s ease-out 0.15s both;
}

.acp-suggestion[b-ti4jez96fu] {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.85rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.76rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: acpChipFloat-b-ti4jez96fu 3.5s ease-in-out infinite;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
}

/* Staggered float delays for organic feel */
.acp-suggestion:nth-child(1)[b-ti4jez96fu]  { animation-delay: 0s; }
.acp-suggestion:nth-child(2)[b-ti4jez96fu]  { animation-delay: 0.4s; }
.acp-suggestion:nth-child(3)[b-ti4jez96fu]  { animation-delay: 0.85s; }
.acp-suggestion:nth-child(4)[b-ti4jez96fu]  { animation-delay: 1.25s; }
.acp-suggestion:nth-child(5)[b-ti4jez96fu]  { animation-delay: 0.2s; }
.acp-suggestion:nth-child(6)[b-ti4jez96fu]  { animation-delay: 0.6s; }
.acp-suggestion:nth-child(7)[b-ti4jez96fu]  { animation-delay: 1.05s; }
.acp-suggestion:nth-child(8)[b-ti4jez96fu]  { animation-delay: 1.45s; }
.acp-suggestion:nth-child(9)[b-ti4jez96fu]  { animation-delay: 0.3s; }
.acp-suggestion:nth-child(10)[b-ti4jez96fu] { animation-delay: 0.75s; }
.acp-suggestion:nth-child(11)[b-ti4jez96fu] { animation-delay: 1.15s; }
.acp-suggestion:nth-child(12)[b-ti4jez96fu] { animation-delay: 1.55s; }

@keyframes acpChipFloat-b-ti4jez96fu {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

/* Short label always visible */
.acp-chip-label[b-ti4jez96fu] {
    display: inline;
}

/* Full text hidden — shown via tooltip only */
.acp-chip-expand[b-ti4jez96fu] {
    display: none;
}

.acp-suggestion:hover[b-ti4jez96fu],
.acp-suggestion:active[b-ti4jez96fu] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation-play-state: paused;
}

.acp-suggestion .bi[b-ti4jez96fu] {
    font-size: 0.82rem;
    opacity: 0.7;
}

/* -- Input area (pinned to bottom) ---------- */
.ai-chat-input-area[b-ti4jez96fu] {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.6rem;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-shrink: 0;
}

.ai-chat-input-row[b-ti4jez96fu] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ai-chat-textarea[b-ti4jez96fu] {
    flex: 1;
    min-height: 62px;
    max-height: 140px;
    resize: none;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
    font-family: inherit;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    outline: none;
    transition: border-color 0.2s ease, height 0.15s ease;
}

.ai-chat-textarea:focus[b-ti4jez96fu] {
    border-color: rgba(139, 92, 246, 0.4);
}

.ai-chat-textarea[b-ti4jez96fu]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.ai-chat-textarea:disabled[b-ti4jez96fu] {
    opacity: 0.4;
    cursor: default;
}

/* -- Tool buttons (mic) --------------------- */
.acp-tool-btn[b-ti4jez96fu] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    flex-shrink: 0;
}

.acp-tool-btn:hover:not(:disabled)[b-ti4jez96fu] {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.acp-tool-btn:disabled[b-ti4jez96fu] {
    opacity: 0.25;
    cursor: default;
}

.acp-tool-active[b-ti4jez96fu] {
    background: rgba(239, 68, 68, 0.12) !important;
    color: #ef4444 !important;
    animation: acpMicPulse-b-ti4jez96fu 1.2s infinite ease-in-out;
}

@keyframes acpMicPulse-b-ti4jez96fu {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.25); }
    50% { box-shadow: 0 0 0 5px rgba(239, 68, 68, 0); }
}

/* -- Send button ---------------------------- */
.acp-send-btn[b-ti4jez96fu] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    border: none;
    background: rgba(91, 45, 142, 0.5);
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.acp-send-btn:hover:not(:disabled)[b-ti4jez96fu] {
    background: linear-gradient(135deg, #5B2D8E, #1A6B7A);
    color: #fff;
    box-shadow: 0 4px 16px rgba(91, 45, 142, 0.3);
}

.acp-send-btn:disabled[b-ti4jez96fu] {
    opacity: 0.25;
    cursor: default;
}

/* -- Mic Permission Message ----------------- */
.acp-mic-message[b-ti4jez96fu] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    margin-bottom: 0.4rem;
    border-radius: 0.5rem;
    font-size: 0.72rem;
    line-height: 1.4;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.acp-mic-message .bi-mic-mute[b-ti4jez96fu] {
    color: #f59e0b;
    flex-shrink: 0;
}

.acp-mic-dismiss[b-ti4jez96fu] {
    margin-left: auto;
    background: none;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
}

.acp-mic-dismiss:hover[b-ti4jez96fu] {
    color: rgba(255, 255, 255, 0.7);
}

/* -- Mobile: full-screen -------------------- */
@media (max-width: 575.98px) {
    .ai-chat-offcanvas[b-ti4jez96fu] {
        width: 100vw !important;
    }

    .acp-bubble[b-ti4jez96fu] {
        max-width: 95%;
    }

    .acp-avatar[b-ti4jez96fu] {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .acp-bubble-bot .acp-avatar[b-ti4jez96fu] {
        margin-right: -12px;
    }

    .acp-bubble-user .acp-avatar[b-ti4jez96fu] {
        margin-left: -12px;
    }

    .ai-chat-input-area[b-ti4jez96fu] {
        padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
    }
}
/* /Components/AI/HeroAskHeidi.razor.rz.scp.css */
/* =============================================
   Hero Ask Heidi -- Glassmorphic Chat Input
   Compact, hero-optimized chat experience
   ============================================= */

.hero-ask[b-ldfn0mqm18] {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: visible;
}

/* -- Animated Gradient Border (background-clip) -- */
@keyframes haskBorderMove-b-ldfn0mqm18 {
    0%   { background-position: 0 0, 0% 50%; }
    100% { background-position: 0 0, 300% 50%; }
}

/* -- Glass Input Card ------------------------ */
.hero-ask-card[b-ldfn0mqm18] {
    position: relative;
    background:
        linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.65)) padding-box,
        linear-gradient(90deg, #5B2D8E, #1A6B7A, #8B5CF6, #1A6B7A, #5B2D8E) border-box;
    background-size: 100% 100%, 300% 100%;
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid transparent;
    border-radius: 1rem;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Large AI avatar attached to top-right corner of card */
.hask-card-avatar[b-ldfn0mqm18] {
    position: absolute;
    top: -60px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 8px 32px rgba(91, 45, 142, 0.3), 0 0 0 4px rgba(15, 23, 42, 0.5);
    z-index: 5;
    animation: haskAvatarFloat-b-ldfn0mqm18 4s ease-in-out infinite;
}

.hask-card-avatar img[b-ldfn0mqm18] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes haskAvatarFloat-b-ldfn0mqm18 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-6px) rotate(1deg); }
}

.hero-ask-card:focus-within[b-ldfn0mqm18] {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2),
                0 0 0 2px rgba(139, 92, 246, 0.25),
                0 0 40px rgba(91, 45, 142, 0.1);
}

/* Sticky card when expanded (chat scrolls, input stays visible) */
.hero-ask-expanded .hero-ask-card[b-ldfn0mqm18] {
    position: sticky;
    bottom: 0;
    z-index: 10;
}

/* -- Textarea -------------------------------- */
.hero-ask-textarea[b-ldfn0mqm18] {
    width: 100%;
    min-height: 42px;
    max-height: 120px;
    resize: none;
    background: transparent;
    border: none;
    padding: 0.5rem 0.6rem;
    font-size: 0.95rem;
    font-family: inherit;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    outline: none;
}

.hero-ask-textarea[b-ldfn0mqm18]::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.hero-ask-textarea:disabled[b-ldfn0mqm18] {
    opacity: 0.4;
    cursor: default;
}

/* -- Mic Permission Message ------------------ */
.hask-mic-message[b-ldfn0mqm18] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.72rem;
    line-height: 1.4;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.hask-mic-message .bi-mic-mute[b-ldfn0mqm18] {
    color: #f59e0b;
    flex-shrink: 0;
}

.hask-mic-dismiss[b-ldfn0mqm18] {
    margin-left: auto;
    background: none;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
}

.hask-mic-dismiss:hover[b-ldfn0mqm18] {
    color: rgba(255, 255, 255, 0.7);
}

/* -- Toolbar --------------------------------- */
.hero-ask-toolbar[b-ldfn0mqm18] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.15rem 0.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.5rem;
}

.hero-ask-tools[b-ldfn0mqm18] {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.hask-tool-btn[b-ldfn0mqm18] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 0.5rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.hask-tool-btn:hover:not(:disabled)[b-ldfn0mqm18] {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.hask-tool-btn:disabled[b-ldfn0mqm18] {
    opacity: 0.25;
    cursor: default;
}

.hask-tool-active[b-ldfn0mqm18] {
    background: rgba(239, 68, 68, 0.12) !important;
    color: #ef4444 !important;
    animation: haskMicPulse-b-ldfn0mqm18 1.2s infinite ease-in-out;
}

@keyframes haskMicPulse-b-ldfn0mqm18 {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.25); }
    50% { box-shadow: 0 0 0 5px rgba(239, 68, 68, 0); }
}

/* -- Send Button ----------------------------- */
.hask-send-btn[b-ldfn0mqm18] {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    border: none;
    background: rgba(91, 45, 142, 0.45);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hask-send-btn:hover:not(:disabled)[b-ldfn0mqm18] {
    background: linear-gradient(135deg, #5B2D8E, #1A6B7A);
    color: #fff;
    box-shadow: 0 4px 16px rgba(91, 45, 142, 0.3);
}

.hask-send-btn:disabled[b-ldfn0mqm18] {
    opacity: 0.75;
    cursor: default;
}

/* -- Suggestion Pills ------------------------ */
.hero-ask-suggestions[b-ldfn0mqm18] {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: haskFadeIn-b-ldfn0mqm18 0.4s ease-out 0.2s both;
}

.hask-suggestion[b-ldfn0mqm18] {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hask-suggestion:hover[b-ldfn0mqm18] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hask-suggestion .bi[b-ldfn0mqm18] {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* -- Messages Area --------------------------- */
.hero-ask-messages[b-ldfn0mqm18] {
    max-height: 60vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem;
    background:
        linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.55)) padding-box,
        linear-gradient(90deg, #5B2D8E, #1A6B7A, #8B5CF6, #1A6B7A, #5B2D8E) border-box;
    background-size: 100% 100%, 300% 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid transparent;
    border-radius: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

@keyframes haskSlideDown-b-ldfn0mqm18 {
    from { opacity: 0; max-height: 0; transform: translateY(-8px); }
    to   { opacity: 1; max-height: 60vh; transform: translateY(0); }
}

/* -- Chat Bubbles ---------------------------- */
.hask-bubble[b-ldfn0mqm18] {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    max-width: 85%;
    animation: haskFadeIn-b-ldfn0mqm18 0.25s ease-out;
}

@keyframes haskFadeIn-b-ldfn0mqm18 {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hask-bubble-user[b-ldfn0mqm18] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.hask-bubble-bot[b-ldfn0mqm18] {
    align-self: flex-start;
}

/* -- Avatar: Circle, Profile-style ----------- */
.hask-avatar[b-ldfn0mqm18] {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.hask-avatar img[b-ldfn0mqm18] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hask-avatar-user[b-ldfn0mqm18] {
    background: rgba(91, 45, 142, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.hask-avatar-initials[b-ldfn0mqm18] {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    line-height: 1;
}

.hask-avatar-user .bi-person-circle[b-ldfn0mqm18] {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Speaking ring glow */
.hask-avatar-speaking[b-ldfn0mqm18] {
    border-color: rgba(139, 92, 246, 0.7);
    animation: haskSpeakRing-b-ldfn0mqm18 1.5s ease-in-out infinite;
}

@keyframes haskSpeakRing-b-ldfn0mqm18 {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(139, 92, 246, 0); }
}

/* -- Bubble Content (left-aligned) ----------- */
.hask-content[b-ldfn0mqm18] {
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    font-size: 0.84rem;
    line-height: 1.55;
    word-break: break-word;
    white-space: pre-wrap;
    text-align: left;
}

.hask-content-user[b-ldfn0mqm18] {
    background: rgba(91, 45, 142, 0.5);
    color: rgba(255, 255, 255, 0.95);
    border-bottom-right-radius: 3px;
}

.hask-content-bot[b-ldfn0mqm18] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    border-bottom-left-radius: 3px;
}

/* -- Speak Button on Assistant Bubbles ------- */
.hask-speak-btn[b-ldfn0mqm18] {
    display: inline-flex;
    align-items: center;
    margin-top: 0.35rem;
    padding: 0.15rem 0.5rem;
    border-radius: 0.35rem;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hask-speak-btn:hover:not(:disabled)[b-ldfn0mqm18] {
    background: rgba(139, 92, 246, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.hask-speak-btn:disabled[b-ldfn0mqm18] {
    opacity: 0.3;
    cursor: default;
}

/* -- Typing Indicator ------------------------ */
.hask-typing[b-ldfn0mqm18] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 0;
}

.hask-typing span[b-ldfn0mqm18] {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(196, 181, 253, 0.7);
    animation: haskDot-b-ldfn0mqm18 1.4s infinite ease-in-out;
}

.hask-typing span:nth-child(2)[b-ldfn0mqm18] { animation-delay: 0.15s; }
.hask-typing span:nth-child(3)[b-ldfn0mqm18] { animation-delay: 0.3s; }

@keyframes haskDot-b-ldfn0mqm18 {
    0%, 60%, 100% { opacity: 0.25; transform: scale(0.85); }
    30% { opacity: 1; transform: scale(1.15); }
}

/* -- Responsive ------------------------------ */
@media (max-width: 575.98px) {
    .hero-ask[b-ldfn0mqm18] {
        max-width: 100%;
    }

    .hero-ask-card[b-ldfn0mqm18] {
        padding: 0.6rem;
        border-radius: 0.75rem;
    }

    .hask-card-avatar[b-ldfn0mqm18] {
        width: 90px;
        height: 90px;
        top: -45px;
        right: -15px;
    }

    .hero-ask-textarea[b-ldfn0mqm18] {
        font-size: 0.88rem;
        min-height: 38px;
    }

    .hero-ask-suggestions[b-ldfn0mqm18] {
        gap: 0.35rem;
    }

    .hask-suggestion[b-ldfn0mqm18] {
        font-size: 0.72rem;
        padding: 0.35rem 0.7rem;
    }

    .hero-ask-messages[b-ldfn0mqm18] {
        max-height: 50vh;
    }

    .hask-bubble[b-ldfn0mqm18] {
        max-width: 95%;
    }

    .hask-avatar[b-ldfn0mqm18] {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}
/* /Components/AI/HeroAskHeidiInline.razor.rz.scp.css */
/* =============================================
   Hero Ask Heidi Inline -- Single-line variant
   Avatar left, input center, mic+send right
   ============================================= */

.hero-ask-inline[b-akp10iw87k] {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: visible;
}

/* -- Glass Input Card (single row) ----------- */
.hask-inline-card[b-akp10iw87k] {
    position: relative;
    background:
        linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.65)) padding-box,
        linear-gradient(90deg, #5B2D8E, #1A6B7A, #8B5CF6, #1A6B7A, #5B2D8E) border-box;
    background-size: 100% 100%, 300% 100%;
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid transparent;
    border-radius: 2rem;
    padding: 0.35rem 0.35rem 0.35rem 3.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* -- Avatar overlapping left edge ------------ */
.hask-inline-avatar[b-akp10iw87k] {
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 4px 16px rgba(91, 45, 142, 0.3), 0 0 0 3px rgba(15, 23, 42, 0.6);
    z-index: 5;
    flex-shrink: 0;
    animation: haskInlineFloat-b-akp10iw87k 4s ease-in-out infinite;
}

.hask-inline-avatar img[b-akp10iw87k] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes haskInlineFloat-b-akp10iw87k {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50%      { transform: translateY(calc(-50% - 3px)) rotate(1deg); }
}

.hask-inline-card:focus-within[b-akp10iw87k] {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2),
                0 0 0 2px rgba(139, 92, 246, 0.25),
                0 0 40px rgba(91, 45, 142, 0.1);
}

/* Sticky card when expanded */
.hero-ask-inline-expanded .hask-inline-card[b-akp10iw87k] {
    position: sticky;
    bottom: 0;
    z-index: 10;
}

/* -- Textarea (auto-expanding, inline) ------- */
.hask-inline-input[b-akp10iw87k] {
    flex: 1;
    min-height: 36px;
    max-height: 120px;
    resize: none;
    background: transparent;
    border: none;
    padding: 0.4rem 0.3rem 0.4rem 0.6rem;
    font-size: 0.92rem;
    font-family: inherit;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
    outline: none;
    overflow-y: auto;
}

.hask-inline-input[b-akp10iw87k]::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.hask-inline-input:disabled[b-akp10iw87k] {
    opacity: 0.4;
    cursor: default;
}

/* -- Mic Permission Message ------------------ */
.hask-mic-message[b-akp10iw87k] {
    position: absolute;
    bottom: calc(100% + 0.4rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.72rem;
    line-height: 1.4;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    z-index: 20;
}

.hask-mic-message .bi-mic-mute[b-akp10iw87k] {
    color: #f59e0b;
    flex-shrink: 0;
}

.hask-mic-dismiss[b-akp10iw87k] {
    margin-left: auto;
    background: none;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
}

.hask-mic-dismiss:hover[b-akp10iw87k] {
    color: rgba(255, 255, 255, 0.7);
}

/* -- Actions (mic + send) on the right ------- */
.hask-inline-actions[b-akp10iw87k] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.hask-inline-btn[b-akp10iw87k] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.hask-inline-btn:hover:not(:disabled)[b-akp10iw87k] {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.hask-inline-btn:disabled[b-akp10iw87k] {
    opacity: 0.25;
    cursor: default;
}

.hask-tool-active[b-akp10iw87k] {
    background: rgba(239, 68, 68, 0.12) !important;
    color: #ef4444 !important;
    animation: haskMicPulse-b-akp10iw87k 1.2s infinite ease-in-out;
}

@keyframes haskMicPulse-b-akp10iw87k {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.25); }
    50% { box-shadow: 0 0 0 5px rgba(239, 68, 68, 0); }
}

/* -- Send Button (icon only, green glow) ----- */
.hask-inline-send[b-akp10iw87k] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.hask-inline-send:hover:not(:disabled)[b-akp10iw87k] {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4), 0 0 20px rgba(21, 128, 61, 0.3);
    color: #fff;
    filter: brightness(1.08);
}

.hask-inline-send:active:not(:disabled)[b-akp10iw87k] {
    transform: translateY(0);
    filter: brightness(0.95);
}

.hask-inline-send[b-akp10iw87k]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.hask-inline-send:hover:not(:disabled)[b-akp10iw87k]::after {
    left: 120%;
}

.hask-inline-send:disabled[b-akp10iw87k] {
    opacity: 0.5;
    cursor: default;
}

/* -- Suggestion Pills ------------------------ */
.hask-inline-suggestions[b-akp10iw87k] {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: haskFadeIn-b-akp10iw87k 0.4s ease-out 0.2s both;
}

/* -- Hint / Login CTA ------------------------ */
.hask-inline-hint[b-akp10iw87k] {
    text-align: center;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.35);
}

.hask-inline-login-hint[b-akp10iw87k] {
    color: rgba(255, 255, 255, 0.45);
}

.hask-inline-login-link[b-akp10iw87k] {
    color: #34d399;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.hask-inline-login-link:hover[b-akp10iw87k] {
    color: #6ee7b7;
    text-decoration: underline;
}

.hask-suggestion[b-akp10iw87k] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5em;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hask-suggestion:hover[b-akp10iw87k] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hask-suggestion .bi[b-akp10iw87k] {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* -- Messages Area --------------------------- */
.hask-inline-messages[b-akp10iw87k] {
    max-height: 60vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem;
    background:
        linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.55)) padding-box,
        linear-gradient(90deg, #5B2D8E, #1A6B7A, #8B5CF6, #1A6B7A, #5B2D8E) border-box;
    background-size: 100% 100%, 300% 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid transparent;
    border-radius: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* -- Chat Bubbles ---------------------------- */
.hask-bubble[b-akp10iw87k] {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    max-width: 85%;
    animation: haskFadeIn-b-akp10iw87k 0.25s ease-out;
}

@keyframes haskFadeIn-b-akp10iw87k {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hask-bubble-user[b-akp10iw87k] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.hask-bubble-bot[b-akp10iw87k] {
    align-self: flex-start;
}

/* -- Avatar in messages ---------------------- */
.hask-avatar[b-akp10iw87k] {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.hask-avatar img[b-akp10iw87k] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hask-avatar-user[b-akp10iw87k] {
    background: rgba(91, 45, 142, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.hask-avatar-initials[b-akp10iw87k] {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    line-height: 1;
}

.hask-avatar-user .bi-person-circle[b-akp10iw87k] {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Speaking ring glow */
.hask-avatar-speaking[b-akp10iw87k] {
    border-color: rgba(139, 92, 246, 0.7);
    animation: haskSpeakRing-b-akp10iw87k 1.5s ease-in-out infinite;
}

@keyframes haskSpeakRing-b-akp10iw87k {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(139, 92, 246, 0); }
}

/* -- Bubble Content -------------------------- */
.hask-content[b-akp10iw87k] {
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    font-size: 0.84rem;
    line-height: 1.55;
    word-break: break-word;
    white-space: pre-wrap;
    text-align: left;
}

.hask-content-user[b-akp10iw87k] {
    background: rgba(91, 45, 142, 0.5);
    color: rgba(255, 255, 255, 0.95);
    border-bottom-right-radius: 3px;
}

.hask-content-bot[b-akp10iw87k] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    border-bottom-left-radius: 3px;
}

/* -- Speak Button on Assistant Bubbles ------- */
.hask-speak-btn[b-akp10iw87k] {
    display: inline-flex;
    align-items: center;
    margin-top: 0.35rem;
    padding: 0.15rem 0.5rem;
    border-radius: 0.35rem;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hask-speak-btn:hover:not(:disabled)[b-akp10iw87k] {
    background: rgba(139, 92, 246, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.hask-speak-btn:disabled[b-akp10iw87k] {
    opacity: 0.3;
    cursor: default;
}

/* -- Typing Indicator ------------------------ */
.hask-typing[b-akp10iw87k] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 0;
}

.hask-typing span[b-akp10iw87k] {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(196, 181, 253, 0.7);
    animation: haskDot-b-akp10iw87k 1.4s infinite ease-in-out;
}

.hask-typing span:nth-child(2)[b-akp10iw87k] { animation-delay: 0.15s; }
.hask-typing span:nth-child(3)[b-akp10iw87k] { animation-delay: 0.3s; }

@keyframes haskDot-b-akp10iw87k {
    0%, 60%, 100% { opacity: 0.25; transform: scale(0.85); }
    30% { opacity: 1; transform: scale(1.15); }
}

/* -- Responsive ------------------------------ */
@media (max-width: 575.98px) {
    .hero-ask-inline[b-akp10iw87k] {
        max-width: 100%;
    }

    .hask-inline-card[b-akp10iw87k] {
        padding: 0.3rem 0.3rem 0.3rem 2.5rem;
        border-radius: 1.5rem;
    }

    .hask-inline-avatar[b-akp10iw87k] {
        width: 42px;
        height: 42px;
        left: 2px;
    }

    .hask-inline-input[b-akp10iw87k] {
        font-size: 0.88rem;
        min-height: 34px;
        max-height: 100px;
    }

    .hask-inline-suggestions[b-akp10iw87k] {
        gap: 0.4rem;
        justify-content: center;
    }

    .hask-suggestion[b-akp10iw87k] {
        font-size: 0.72rem;
    }

    .hask-inline-messages[b-akp10iw87k] {
        max-height: 50vh;
    }

    .hask-bubble[b-akp10iw87k] {
        max-width: 95%;
    }

    .hask-avatar[b-akp10iw87k] {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}
/* /Components/Contact/ContactHeidiChat.razor.rz.scp.css */
/* ═════════════════════════════════════════════
   Contact Heidi Chat — Hero-Inline Glass Style
   Dark glass cards, gradient borders, round buttons
   ═════════════════════════════════════════════ */

.contact-chat[b-ytmq8oa5qw] {
    display: flex;
    flex-direction: column;
    height: 600px;
    border-radius: 1rem;
    overflow: hidden;
    background:
        linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)) padding-box,
        linear-gradient(135deg, #5B2D8E, #1A6B7A, #8B5CF6) border-box;
    border: 1px solid transparent;
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ── Header ── */
.contact-chat-header[b-ytmq8oa5qw] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.5);
    flex-shrink: 0;
}

.contact-chat-avatar-wrap[b-ytmq8oa5qw] {
    position: relative;
    flex-shrink: 0;
}

.contact-chat-avatar[b-ytmq8oa5qw] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 2px 10px rgba(91, 45, 142, 0.25);
}

.contact-chat-online-dot[b-ytmq8oa5qw] {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid rgba(15, 23, 42, 0.9);
    animation: onlinePulse-b-ytmq8oa5qw 2s infinite ease-in-out;
}

@keyframes onlinePulse-b-ytmq8oa5qw {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50%      { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.contact-chat-name[b-ytmq8oa5qw] {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
}

.contact-chat-status[b-ytmq8oa5qw] {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.contact-chat-dot[b-ytmq8oa5qw] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: dotPulse-b-ytmq8oa5qw 2s infinite ease-in-out;
}

@keyframes dotPulse-b-ytmq8oa5qw {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.contact-chat-voice-toggle[b-ytmq8oa5qw] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.68rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.contact-chat-voice-toggle.voice-on[b-ytmq8oa5qw] {
    background: rgba(34, 197, 94, 0.12);
    color: #34d399;
    border-color: rgba(34, 197, 94, 0.25);
}

.contact-chat-voice-toggle.voice-off[b-ytmq8oa5qw] {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-chat-voice-toggle:hover[b-ytmq8oa5qw] {
    filter: brightness(1.2);
}

/* ── Messages ── */
.contact-chat-messages[b-ytmq8oa5qw] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* ── Bubbles ── */
.cchat-bubble[b-ytmq8oa5qw] {
    display: flex;
    gap: 0.5rem;
    max-width: 85%;
    animation: bubbleFade-b-ytmq8oa5qw 0.25s ease-out;
}

@keyframes bubbleFade-b-ytmq8oa5qw {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.cchat-bubble-user[b-ytmq8oa5qw] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.cchat-bubble-bot[b-ytmq8oa5qw] {
    align-self: flex-start;
}

.cchat-bubble-avatar[b-ytmq8oa5qw] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    overflow: hidden;
}

.cchat-bubble-user .cchat-bubble-avatar[b-ytmq8oa5qw] {
    background: rgba(139, 92, 246, 0.25);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cchat-bubble-bot .cchat-bubble-avatar[b-ytmq8oa5qw] {
    background: transparent;
    padding: 0;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.cchat-avatar-img[b-ytmq8oa5qw] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.cchat-bubble-body[b-ytmq8oa5qw] {
    display: flex;
    flex-direction: column;
}

.cchat-bubble-content[b-ytmq8oa5qw] {
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.55;
    word-break: break-word;
    white-space: pre-wrap;
}

.cchat-bubble-user .cchat-bubble-content[b-ytmq8oa5qw] {
    background: rgba(91, 45, 142, 0.5);
    color: rgba(255, 255, 255, 0.95);
    border-bottom-right-radius: 3px;
}

.cchat-bubble-bot .cchat-bubble-content[b-ytmq8oa5qw] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    border-bottom-left-radius: 3px;
}

/* ── Speak Button ── */
.cchat-speak-btn[b-ytmq8oa5qw] {
    display: inline-flex;
    align-items: center;
    margin-top: 0.3rem;
    padding: 0.15rem 0.5rem;
    border-radius: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.65rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
}

.cchat-speak-btn:hover:not(:disabled)[b-ytmq8oa5qw] {
    background: rgba(139, 92, 246, 0.15);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(139, 92, 246, 0.3);
}

.cchat-speak-btn:disabled[b-ytmq8oa5qw] {
    opacity: 0.3;
    cursor: default;
}

/* ── Typing Indicator ── */
.cchat-typing[b-ytmq8oa5qw] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 0;
}

.cchat-typing span[b-ytmq8oa5qw] {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(196, 181, 253, 0.7);
    animation: cchatDot-b-ytmq8oa5qw 1.4s infinite ease-in-out;
}

.cchat-typing span:nth-child(2)[b-ytmq8oa5qw] { animation-delay: 0.15s; }
.cchat-typing span:nth-child(3)[b-ytmq8oa5qw] { animation-delay: 0.3s; }

@keyframes cchatDot-b-ytmq8oa5qw {
    0%, 60%, 100% { opacity: 0.25; transform: scale(0.85); }
    30% { opacity: 1; transform: scale(1.15); }
}

/* ── Save Lead Banner ── */
.contact-chat-save-banner[b-ytmq8oa5qw] {
    padding: 0.65rem 1rem;
    background: rgba(34, 197, 94, 0.08);
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    flex-shrink: 0;
    animation: bannerSlide-b-ytmq8oa5qw 0.3s ease-out;
}

.contact-chat-save-banner.saved[b-ytmq8oa5qw] {
    background: rgba(34, 197, 94, 0.12);
}

@keyframes bannerSlide-b-ytmq8oa5qw {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Input Area ── */
.contact-chat-input[b-ytmq8oa5qw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.65)) padding-box,
        linear-gradient(90deg, #5B2D8E, #1A6B7A, #8B5CF6, #1A6B7A, #5B2D8E) border-box;
    background-size: 100% 100%, 300% 100%;
    flex-shrink: 0;
    border-radius: 0 0 1rem 1rem;
}

.contact-chat-textarea[b-ytmq8oa5qw] {
    flex: 1;
    min-height: 36px;
    max-height: 120px;
    resize: none;
    background: transparent;
    border: none;
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
    font-family: inherit;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
    outline: none;
    overflow-y: auto;
}

.contact-chat-textarea[b-ytmq8oa5qw]::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-chat-textarea:disabled[b-ytmq8oa5qw] {
    opacity: 0.4;
    cursor: default;
}

/* ── Action Buttons Group (right side) ── */
.contact-chat-actions[b-ytmq8oa5qw] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

/* ── Send Button (green glow, circular) ── */
.contact-chat-send[b-ytmq8oa5qw] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    font-size: 0.92rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.contact-chat-send:hover:not(:disabled)[b-ytmq8oa5qw] {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4), 0 0 20px rgba(21, 128, 61, 0.3);
    filter: brightness(1.08);
}

.contact-chat-send:active:not(:disabled)[b-ytmq8oa5qw] {
    transform: translateY(0);
    filter: brightness(0.95);
}

.contact-chat-send[b-ytmq8oa5qw]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.contact-chat-send:hover:not(:disabled)[b-ytmq8oa5qw]::after {
    left: 120%;
}

.contact-chat-send:disabled[b-ytmq8oa5qw] {
    opacity: 0.4;
    cursor: default;
}

/* ── Mic Button (circular) ── */
.contact-chat-mic[b-ytmq8oa5qw] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.contact-chat-mic:hover:not(:disabled)[b-ytmq8oa5qw] {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.contact-chat-mic:disabled[b-ytmq8oa5qw] {
    opacity: 0.25;
    cursor: default;
}

.contact-chat-mic-active[b-ytmq8oa5qw] {
    background: rgba(239, 68, 68, 0.12) !important;
    color: #ef4444 !important;
    animation: micPulse-b-ytmq8oa5qw 1.2s infinite ease-in-out;
}

@keyframes micPulse-b-ytmq8oa5qw {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.25); }
    50% { box-shadow: 0 0 0 5px rgba(239, 68, 68, 0); }
}

/* ── Attach Button (circular) ── */
.contact-chat-attach[b-ytmq8oa5qw] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.contact-chat-attach:hover:not(:disabled)[b-ytmq8oa5qw] {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.contact-chat-attach:disabled[b-ytmq8oa5qw] {
    opacity: 0.25;
    cursor: not-allowed;
}

/* ── Hint / Login CTA ── */
.contact-chat-hint[b-ytmq8oa5qw] {
    text-align: center;
    padding: 0.35rem 1rem 0.5rem;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.35);
}

.contact-chat-login-hint[b-ytmq8oa5qw] {
    color: rgba(255, 255, 255, 0.45);
}

.contact-chat-login-link[b-ytmq8oa5qw] {
    color: #34d399;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-chat-login-link:hover[b-ytmq8oa5qw] {
    color: #6ee7b7;
    text-decoration: underline;
}

/* ── Mic Permission Message ── */
.chat-mic-message[b-ytmq8oa5qw] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    margin: 0 0.75rem 0.35rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.4;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.chat-mic-message .bi-mic-mute[b-ytmq8oa5qw] {
    color: #f59e0b;
    flex-shrink: 0;
}

.chat-mic-dismiss[b-ytmq8oa5qw] {
    margin-left: auto;
    background: none;
    border: none;
    padding: 0 0.15rem;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.15s ease;
}

.chat-mic-dismiss:hover[b-ytmq8oa5qw] {
    color: rgba(255, 255, 255, 0.7);
}

/* ── Pending Files Bar ── */
.contact-chat-pending-files[b-ytmq8oa5qw] {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    padding: 0.45rem 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.cchat-pending-chip[b-ytmq8oa5qw] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: rgba(255, 255, 255, 0.85);
    animation: bubbleFade-b-ytmq8oa5qw 0.2s ease-out;
}

.cchat-pending-remove[b-ytmq8oa5qw] {
    background: none;
    border: none;
    padding: 0 0.1rem;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1;
    transition: color 0.15s ease;
}

.cchat-pending-remove:hover[b-ytmq8oa5qw] {
    color: #ef4444;
}

/* ── Attachment Chips in Bubbles ── */
.cchat-attachments[b-ytmq8oa5qw] {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-bottom: 0.3rem;
}

.cchat-attachment-chip[b-ytmq8oa5qw] {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.15rem 0.45rem;
    border-radius: 2rem;
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.cchat-attachment-name[b-ytmq8oa5qw] {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cchat-attachment-size[b-ytmq8oa5qw] {
    opacity: 0.6;
    font-size: 0.6rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .contact-chat[b-ytmq8oa5qw] {
        height: 520px;
    }

    .cchat-bubble[b-ytmq8oa5qw] {
        max-width: 93%;
    }

    .cchat-bubble-avatar[b-ytmq8oa5qw] {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .contact-chat-avatar[b-ytmq8oa5qw] {
        width: 36px;
        height: 36px;
    }

    .contact-chat-online-dot[b-ytmq8oa5qw] {
        width: 8px;
        height: 8px;
    }
}
/* /Components/Contact/ContactManualForm.razor.rz.scp.css */
/* ═════════════════════════════════════════════
   Contact Manual Form — Hero-Inline Glass Style
   Matches ContactHeidiChat dark glass aesthetic
   ═════════════════════════════════════════════ */

.manual-form-glass[b-uxchvmr4on] {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    overflow: hidden;
    background:
        linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)) padding-box,
        linear-gradient(135deg, #5B2D8E, #1A6B7A, #8B5CF6) border-box;
    border: 1px solid transparent;
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ── Header ── */
.manual-form-header[b-uxchvmr4on] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.5);
    flex-shrink: 0;
}

.manual-form-avatar-wrap[b-uxchvmr4on] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 2px 10px rgba(91, 45, 142, 0.25);
    background: rgba(91, 45, 142, 0.2);
    flex-shrink: 0;
}

.manual-form-avatar-icon[b-uxchvmr4on] {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #c084fc, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manual-form-title[b-uxchvmr4on] {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
}

.manual-form-subtitle[b-uxchvmr4on] {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.manual-form-dot[b-uxchvmr4on] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: formDotPulse-b-uxchvmr4on 2s infinite ease-in-out;
}

@keyframes formDotPulse-b-uxchvmr4on {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* ── Body ── */
.manual-form-body[b-uxchvmr4on] {
    padding: 1.25rem;
    flex: 1;
}

/* ── Labels ── */
.manual-form-label[b-uxchvmr4on] {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.3rem;
    letter-spacing: 0.3px;
}

.manual-form-required[b-uxchvmr4on] {
    color: #f87171;
}

/* ── Inputs & Select ── */
/* ::deep required because InputText/InputSelect/InputTextArea
   are child Blazor components — their rendered elements lack
   the CSS isolation attribute. */
[b-uxchvmr4on] .manual-form-input,
[b-uxchvmr4on] .manual-form-select,
[b-uxchvmr4on] .manual-form-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.55rem 0.75rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

[b-uxchvmr4on] .manual-form-input::placeholder,
[b-uxchvmr4on] .manual-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

[b-uxchvmr4on] .manual-form-input:focus,
[b-uxchvmr4on] .manual-form-select:focus,
[b-uxchvmr4on] .manual-form-textarea:focus {
    border-color: rgba(139, 92, 246, 0.45);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

[b-uxchvmr4on] .manual-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2rem;
}

[b-uxchvmr4on] .manual-form-select option {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.9);
}

[b-uxchvmr4on] .manual-form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* ── Validation ── */
[b-uxchvmr4on] .validation-message {
    font-size: 0.7rem;
    color: #f87171;
    margin-top: 0.2rem;
}

/* ── Send Button ── */
.manual-form-send[b-uxchvmr4on] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    background:
        linear-gradient(135deg, #5B2D8E, #1A6B7A, #8B5CF6) padding-box,
        linear-gradient(135deg, #5B2D8E, #1A6B7A, #8B5CF6) border-box;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(91, 45, 142, 0.3);
}

.manual-form-send:hover:not(:disabled)[b-uxchvmr4on] {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(91, 45, 142, 0.45), 0 0 25px rgba(139, 92, 246, 0.25);
    filter: brightness(1.1);
}

.manual-form-send:active:not(:disabled)[b-uxchvmr4on] {
    transform: translateY(0);
    filter: brightness(0.95);
}

.manual-form-send[b-uxchvmr4on]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.manual-form-send:hover:not(:disabled)[b-uxchvmr4on]::after {
    left: 120%;
}

.manual-form-send:disabled[b-uxchvmr4on] {
    opacity: 0.45;
    cursor: default;
}

/* ── Error Message ── */
.manual-form-error[b-uxchvmr4on] {
    font-size: 0.78rem;
    color: #f87171;
}

/* ── Success State ── */
.manual-form-success[b-uxchvmr4on] {
    text-align: center;
    padding: 2rem 1rem;
}

.manual-form-success-icon[b-uxchvmr4on] {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 0.75rem;
}

.manual-form-success-title[b-uxchvmr4on] {
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.manual-form-success-text[b-uxchvmr4on] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.25rem;
}

.manual-form-reset-btn[b-uxchvmr4on] {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.manual-form-reset-btn:hover[b-uxchvmr4on] {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(139, 92, 246, 0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .manual-form-body[b-uxchvmr4on] {
        padding: 1rem;
    }
}
/* /Components/Contact/ContactSection.razor.rz.scp.css */
/* ═════════════════════════════════════════════
   ContactSection — Toggle + Layout
   ═════════════════════════════════════════════ */

/* ── AI / Manual Toggle ── */
.contact-toggle-wrap[b-7s44q9vmcv] {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-toggle[b-7s44q9vmcv] {
    display: inline-flex;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px;
    gap: 2px;
}

.contact-toggle-btn[b-7s44q9vmcv] {
    border: none;
    background: transparent;
    padding: 0.5rem 1.35rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease-out;
    display: inline-flex;
    align-items: center;
}

.contact-toggle-btn:hover:not(.active)[b-7s44q9vmcv] {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
}

.contact-toggle-btn.active[b-7s44q9vmcv] {
    background: var(--brand-gradient);
    color: var(--text-on-brand);
    box-shadow: var(--glow-primary);
}

.contact-toggle-hint[b-7s44q9vmcv] {
    margin-top: 0.65rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Responsive ── */
@media (max-width: 576px) {
    .contact-toggle-btn[b-7s44q9vmcv] {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }
}

/* ── Suggestion Sidebar ── */
.contact-suggestions-sidebar[b-7s44q9vmcv] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-suggestions-title[b-7s44q9vmcv] {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-suggestion-chip[b-7s44q9vmcv] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.45rem 0.65rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    width: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-suggestion-chip:hover[b-7s44q9vmcv] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-suggestion-chip .bi[b-7s44q9vmcv] {
    font-size: 1.1rem;
    opacity: 0.6;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.contact-suggestion-label[b-7s44q9vmcv] {
    font-size: 0.82rem;
    font-weight: 600;
}

.contact-suggestion-desc[b-7s44q9vmcv] {
    font-size: 0.72rem;
    opacity: 0.6;
    margin-top: 0.15rem;
    line-height: 1.35;
}

/* Responsive: title on its own line, chips wrap + center below */
@media (max-width: 991.98px) {
    .contact-suggestions-sidebar[b-7s44q9vmcv] {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
        margin-top: 0.5rem;
        padding-bottom: 0.25rem;
    }

    .contact-suggestions-title[b-7s44q9vmcv] {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 0.15rem;
        white-space: nowrap;
    }

    .contact-suggestion-chip[b-7s44q9vmcv] {
        flex: 0 0 auto;
        width: auto;
        padding: 0.35rem 0.65rem;
        border-radius: 2rem;
        gap: 0.35rem;
        align-items: center;
        white-space: nowrap;
    }

    .contact-suggestion-desc[b-7s44q9vmcv] {
        display: none;
    }

    .contact-suggestion-chip .bi[b-7s44q9vmcv] {
        font-size: 0.9rem;
        margin-top: 0;
    }
}

/* ── Inline Badges (Manual Form mode) ── */
.contact-inline-badges[b-7s44q9vmcv] {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-inline-badge[b-7s44q9vmcv] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5em;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-inline-badge:hover[b-7s44q9vmcv] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-inline-badge .bi[b-7s44q9vmcv] {
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 991.98px) {
    .contact-inline-badges[b-7s44q9vmcv] {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.25rem;
    }

    .contact-inline-badges[b-7s44q9vmcv]::-webkit-scrollbar {
        display: none;
    }

    .contact-inline-badge[b-7s44q9vmcv] {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* ── Scrolling Technology Badges ── */
.contact-tech-scroll[b-7s44q9vmcv] {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.contact-tech-track[b-7s44q9vmcv] {
    display: flex;
    gap: 0.5rem;
    animation: contactTechScroll-b-7s44q9vmcv 30s linear infinite;
    width: max-content;
}

.contact-tech-scroll:hover .contact-tech-track[b-7s44q9vmcv] {
    animation-play-state: paused;
}

.contact-tech-badge[b-7s44q9vmcv] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-tech-badge:hover[b-7s44q9vmcv] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

@keyframes contactTechScroll-b-7s44q9vmcv {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* /Components/Layout/AdminLayout.razor.rz.scp.css */
/* ── AdminLayout scoped styles ───────────────────────────────── */

/* ── Compact top bar ─────────────────────────────────────────── */
.admin-topbar[b-zaz7mxfu7d] {
    z-index: 1040;
}

.admin-sidebar-toggle[b-zaz7mxfu7d] {
    color: var(--text-primary);
    font-size: 1.25rem;
}

.admin-sidebar-toggle:hover[b-zaz7mxfu7d] {
    color: var(--brand-accent, #5B2D8E);
}

/* ── Offcanvas sidebar ───────────────────────────────────────── */
[b-zaz7mxfu7d] .admin-sidebar {
    width: 280px;
    background-color: var(--surface-bg, #1a1a2e);
    border-right: 1px solid var(--surface-border, rgba(255, 255, 255, 0.08));
    z-index: 1045;
}

[b-zaz7mxfu7d] .admin-sidebar .offcanvas-header {
    padding: 1rem 1.25rem;
}

[b-zaz7mxfu7d] .admin-sidebar .offcanvas-body {
    padding: 0;
    overflow-y: auto;
}

/* ── Sidebar nav container ───────────────────────────────────── */
[b-zaz7mxfu7d] .admin-sidebar-nav {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-bottom: 1rem;
}

[b-zaz7mxfu7d] .admin-sidebar-nav .nav {
    gap: 0;
}

/* ── Nav links ───────────────────────────────────────────────── */
[b-zaz7mxfu7d] .admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    color: var(--text-secondary, #adb5bd);
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: background-color 0.2s ease,
                color 0.2s ease,
                border-color 0.2s ease;
}

[b-zaz7mxfu7d] .admin-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--text-primary, #fff);
}

[b-zaz7mxfu7d] .admin-nav-link.active {
    background-color: rgba(255, 193, 7, 0.08);
    color: var(--bs-warning, #ffc107);
    border-left-color: var(--bs-warning, #ffc107);
    font-weight: 700;
}

[b-zaz7mxfu7d] .admin-nav-link i.bi {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

[b-zaz7mxfu7d] .admin-nav-link:hover i.bi,
[b-zaz7mxfu7d] .admin-nav-link.active i.bi {
    opacity: 1;
}

/* ── Group headings & collapsible toggle ─────────────────────── */
[b-zaz7mxfu7d] .admin-nav-group {
    margin-top: 0.25rem;
}

[b-zaz7mxfu7d] .admin-nav-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.6rem 1.25rem 0.35rem;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-muted, #6c757d);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

[b-zaz7mxfu7d] .admin-nav-group-toggle:hover {
    color: var(--text-secondary, #adb5bd);
}

[b-zaz7mxfu7d] .admin-nav-chevron {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
}

[b-zaz7mxfu7d] .admin-nav-group-toggle[aria-expanded="false"] .admin-nav-chevron {
    transform: rotate(-90deg);
}

[b-zaz7mxfu7d] .admin-nav-group-toggle[aria-expanded="true"] .admin-nav-chevron {
    transform: rotate(0deg);
}

/* ── Indent links inside collapsed groups ────────────────────── */
[b-zaz7mxfu7d] .admin-nav-group .collapse .admin-nav-link,
[b-zaz7mxfu7d] .admin-nav-group .collapsing .admin-nav-link {
    padding-left: 1.5rem;
}

/* ── Shared admin table header ───────────────────────────────── */
[b-zaz7mxfu7d] .event-table-header {
    background: linear-gradient(135deg, rgba(91, 45, 142, 0.08), rgba(26, 107, 122, 0.08));
    border-bottom: 2px solid var(--brand-accent, #5B2D8E);
}

[b-zaz7mxfu7d] .event-table-header th {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    padding: 0.75rem 0.5rem;
    white-space: nowrap;
}

/* ── Responsive fix — keep hamburger & logo flush-left under 1000px ── */
@media (max-width: 999px) {
    .admin-topbar[b-zaz7mxfu7d] {
        padding: 0.5rem 0.75rem;
    }

    .admin-topbar > .container-fluid[b-zaz7mxfu7d] {
        flex-wrap: nowrap;
        padding-left: 0;
        padding-right: 0;
    }

    .admin-topbar .navbar-brand[b-zaz7mxfu7d] {
        margin-left: 0 !important;
    }
}

/* ── Shared admin sortable table headers ─────────────────────── */
[b-zaz7mxfu7d] .sortable-header {
    cursor: pointer;
    user-select: none;
    transition: color 0.15s ease;
}

[b-zaz7mxfu7d] .sortable-header:hover {
    color: var(--brand-accent, #5B2D8E) !important;
}

[b-zaz7mxfu7d] .sort-icon {
    font-size: 0.7rem;
    opacity: 0.4;
}

[b-zaz7mxfu7d] .sortable-header:hover .sort-icon {
    opacity: 1;
}

/* ── Clickable table rows ────────────────────────────────────── */
[b-zaz7mxfu7d] .cursor-pointer {
    cursor: pointer;
}

/* ── Shared admin pagination (jmac-pager) ────────────────────── */
[b-zaz7mxfu7d] .jmac-pager .page-link {
    background: transparent;
    border-color: rgba(139, 92, 246, 0.25);
    color: #c4b5fd;
    transition: all 0.15s ease;
}

[b-zaz7mxfu7d] .jmac-pager .page-link:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    color: #e9d5ff;
}

[b-zaz7mxfu7d] .jmac-pager .page-item.active .page-link {
    background: rgba(139, 92, 246, 0.6);
    border-color: rgba(139, 92, 246, 0.7);
    color: #fff;
}

[b-zaz7mxfu7d] .jmac-pager .page-item.disabled .page-link {
    background: transparent;
    border-color: rgba(139, 92, 246, 0.1);
    color: rgba(139, 92, 246, 0.3);
}

/* /Components/Layout/AuthLayout.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   AuthLayout — Distraction-free auth pages
   Full-viewport mesh-gradient background, glass card, no navbar
   ═══════════════════════════════════════════════════════════════ */

/* ── Full-viewport animated background ───────────────────────── */
.auth-layout[b-e7yum1u55j] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
}

/* ── Centered column: card → footer ──────────────────────────── */
.auth-layout-content[b-e7yum1u55j] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 520px;
    position: relative;
    z-index: 1;
}

/* ── Override account-page flex/height inside auth layout ─────── */
[b-e7yum1u55j] .account-page {
    min-height: auto;
    padding: 0;
    width: 100%;
}

/* ── Glass card ──────────────────────────────────────────────── */
[b-e7yum1u55j] .account-card {
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: #f1f5f9;
}

/* ── Logo in card header — replaces icon with logo image ─────── */
[b-e7yum1u55j] .account-header-icon {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0;
}

[b-e7yum1u55j] .account-header-icon .bi {
    display: none;
}

[b-e7yum1u55j] .account-header-icon::before {
    content: '';
    display: block;
    width: 120px;
    height: 44px;
    background: url('/images/JMACWeb-new-logo.png') center / contain no-repeat;
}

[b-e7yum1u55j] .account-header-logo-link {
    text-decoration: none;
    display: inline-block;
}

/* ── Result page icons — keep visible (no logo replacement) ──── */
[b-e7yum1u55j] .account-result-icon {
    font-size: 2rem;
}

[b-e7yum1u55j] .account-result-icon .bi {
    display: inline;
}

[b-e7yum1u55j] .account-result-icon::before {
    display: none;
}

/* ── Header text ─────────────────────────────────────────────── */
[b-e7yum1u55j] .account-card .account-header h1 {
    color: #f1f5f9;
}

[b-e7yum1u55j] .account-card .account-header p {
    color: rgba(241, 245, 249, 0.7);
}

/* ═══════════════════════════════════════════════════════════════
   Form Controls — glass-friendly inputs
   ═══════════════════════════════════════════════════════════════ */

[b-e7yum1u55j] .account-card .form-control {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #f1f5f9;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[b-e7yum1u55j] .account-card .form-control::placeholder {
    color: rgba(241, 245, 249, 0.35);
}

[b-e7yum1u55j] .account-card .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(91, 45, 142, 0.6);
    box-shadow: 0 0 0 0.2rem rgba(91, 45, 142, 0.25);
    color: #f1f5f9;
}

[b-e7yum1u55j] .account-card .form-floating > label {
    color: rgba(241, 245, 249, 0.55);
}

[b-e7yum1u55j] .account-card .form-floating > .form-control:focus ~ label,
[b-e7yum1u55j] .account-card .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: rgba(241, 245, 249, 0.8);
}

/* ── Validation borders — only after user interaction ────────── */
[b-e7yum1u55j] .account-card .form-control.modified.valid {
    border-color: #22c55e;
    box-shadow: 0 0 0 0.15rem rgba(34, 197, 94, 0.2);
}

[b-e7yum1u55j] .account-card .form-control.modified.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 0.15rem rgba(239, 68, 68, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   Field Icons — positioned right side inside form-floating
   ═══════════════════════════════════════════════════════════════ */

[b-e7yum1u55j] .has-icon-end {
    position: relative;
}

[b-e7yum1u55j] .has-icon-end .form-control {
    padding-right: 2.75rem;
}

[b-e7yum1u55j] .has-icon-end .auth-field-icon {
    position: absolute;
    right: 1rem;
    top: 1.2rem;
    font-size: 1.05rem;
    color: rgba(241, 245, 249, 0.45);
    pointer-events: none;
    z-index: 3;
    transition: color 0.2s ease;
}

[b-e7yum1u55j] .has-icon-end .form-control:focus ~ .auth-field-icon {
    color: rgba(241, 245, 249, 0.7);
}

[b-e7yum1u55j] .has-icon-end .form-control.modified.valid ~ .auth-field-icon {
    color: rgba(34, 197, 94, 0.6);
}

[b-e7yum1u55j] .has-icon-end .form-control.modified.invalid ~ .auth-field-icon {
    color: rgba(239, 68, 68, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   Checkboxes
   ═══════════════════════════════════════════════════════════════ */

[b-e7yum1u55j] .account-card .form-check-label {
    color: rgba(241, 245, 249, 0.75);
}

[b-e7yum1u55j] .account-card .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

[b-e7yum1u55j] .account-card .form-check-input:checked {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
}

/* ═══════════════════════════════════════════════════════════════
   Green Action Buttons — replaces btn-primary in auth context
   ═══════════════════════════════════════════════════════════════ */

[b-e7yum1u55j] .account-card .btn-primary {
    background: linear-gradient(135deg, #059669, #10b981);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

[b-e7yum1u55j] .account-card .btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #047857, #059669);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    transform: translateY(-1px);
}

[b-e7yum1u55j] .account-card .btn-primary:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

[b-e7yum1u55j] .account-card .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

[b-e7yum1u55j] .account-card .btn-primary .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* ═══════════════════════════════════════════════════════════════
   Links & Dividers
   ═══════════════════════════════════════════════════════════════ */

[b-e7yum1u55j] .account-card .account-links {
    border-top-color: rgba(255, 255, 255, 0.08);
}

[b-e7yum1u55j] .account-card .account-links a {
    color: rgba(196, 181, 253, 0.9);
}

[b-e7yum1u55j] .account-card .account-links a:hover {
    color: #c4b5fd;
}

[b-e7yum1u55j] .account-card .account-divider {
    color: rgba(241, 245, 249, 0.4);
}

[b-e7yum1u55j] .account-card .account-divider::before,
[b-e7yum1u55j] .account-card .account-divider::after {
    background: rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════════════════════════════
   External Login / Social Buttons
   ═══════════════════════════════════════════════════════════════ */

[b-e7yum1u55j] .account-card .account-social-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    color: #f1f5f9;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

[b-e7yum1u55j] .account-card .account-social-btn .bi {
    font-size: 1.4rem;
}

[b-e7yum1u55j] .account-card .account-social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── Brand colors for provider icons ─────────────────────────── */
[b-e7yum1u55j] .account-social-btn .social-icon {
    flex-shrink: 0;
}

[b-e7yum1u55j] .account-social-github .bi-github {
    color: #f1f5f9;
}

[b-e7yum1u55j] .account-social-facebook .bi-facebook {
    color: #1877F2;
}

[b-e7yum1u55j] .account-social-apple .bi-apple {
    color: #f1f5f9;
}

[b-e7yum1u55j] .account-social-twitter .bi-twitter-x {
    color: #f1f5f9;
}

/* ═══════════════════════════════════════════════════════════════
   Outline Buttons (passkey, etc.)
   ═══════════════════════════════════════════════════════════════ */

[b-e7yum1u55j] .account-card .btn-outline-primary {
    color: rgba(196, 181, 253, 0.9);
    border-color: rgba(196, 181, 253, 0.3);
}

[b-e7yum1u55j] .account-card .btn-outline-primary:hover {
    background: rgba(91, 45, 142, 0.3);
    border-color: rgba(196, 181, 253, 0.5);
    color: #f1f5f9;
}

/* ═══════════════════════════════════════════════════════════════
   Result Pages, Alerts, Validation Text, Status Messages
   ═══════════════════════════════════════════════════════════════ */

[b-e7yum1u55j] .account-card .account-result-page p {
    color: rgba(241, 245, 249, 0.65);
}

[b-e7yum1u55j] .account-card .account-alert {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

[b-e7yum1u55j] .account-card .text-danger {
    color: #fca5a5 !important;
}

[b-e7yum1u55j] .account-card .text-secondary {
    color: rgba(241, 245, 249, 0.6) !important;
}

[b-e7yum1u55j] .account-card .account-status-danger {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}

[b-e7yum1u55j] .account-card .account-status-success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.25);
    color: #86efac;
}

/* ═══════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════ */

.auth-footer[b-e7yum1u55j] {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(241, 245, 249, 0.45);
    text-align: center;
}

.auth-footer a[b-e7yum1u55j] {
    color: rgba(241, 245, 249, 0.55);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

.auth-footer a:hover[b-e7yum1u55j] {
    color: rgba(241, 245, 249, 0.85);
}

/* ═══════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 576px) {
    .auth-layout[b-e7yum1u55j] {
        padding: 1.5rem 0.75rem;
    }

    [b-e7yum1u55j] .account-card {
        padding: 1.5rem;
        border-radius: 0.75rem;
    }

    [b-e7yum1u55j] .account-header-icon::before {
        width: 100px;
        height: 36px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ── MainLayout scoped styles ────────────────────────────────── */

/* Keep the blazor-error-ui overlay */
#blazor-error-ui[b-198wh1uu7d] {
    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-198wh1uu7d] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ztf3ed6zhz],
.components-reconnect-repeated-attempt-visible[b-ztf3ed6zhz],
.components-reconnect-failed-visible[b-ztf3ed6zhz],
.components-pause-visible[b-ztf3ed6zhz],
.components-resume-failed-visible[b-ztf3ed6zhz],
.components-rejoining-animation[b-ztf3ed6zhz] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ztf3ed6zhz],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ztf3ed6zhz],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ztf3ed6zhz],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ztf3ed6zhz],
#components-reconnect-modal.components-reconnect-retrying[b-ztf3ed6zhz],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ztf3ed6zhz],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ztf3ed6zhz],
#components-reconnect-modal.components-reconnect-failed[b-ztf3ed6zhz],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ztf3ed6zhz] {
    display: block;
}


#components-reconnect-modal[b-ztf3ed6zhz] {
    background-color: white;
    color: #1a1a2e;
    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-ztf3ed6zhz 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ztf3ed6zhz 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ztf3ed6zhz 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ztf3ed6zhz]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ztf3ed6zhz 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ztf3ed6zhz {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ztf3ed6zhz {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ztf3ed6zhz {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ztf3ed6zhz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ztf3ed6zhz] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ztf3ed6zhz] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ztf3ed6zhz] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ztf3ed6zhz] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ztf3ed6zhz] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ztf3ed6zhz] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ztf3ed6zhz 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ztf3ed6zhz] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ztf3ed6zhz {
    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/AdminAiUsage.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   AdminAiUsage — Scoped styles for AI observability dashboard
   Glassmorphism KPI cards + pure-CSS bar chart
   ═══════════════════════════════════════════════════════════════ */

/* ── KPI Hero Cards ──────────────────────────────────────────── */
.ai-kpi-card[b-rvnks4b8jq] {
    position: relative;
    background: var(--surface-bg);
    border: 1px solid var(--surface-border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
    overflow: hidden;
}

.ai-kpi-card[b-rvnks4b8jq]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--brand-gradient-subtle);
    filter: blur(40px);
    opacity: 0.6;
    pointer-events: none;
}

.ai-kpi-card:hover[b-rvnks4b8jq] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 45, 142, 0.12);
}

.ai-kpi-icon[b-rvnks4b8jq] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.ai-kpi-value[b-rvnks4b8jq] {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.ai-kpi-unit[b-rvnks4b8jq] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 0.125rem;
}

.ai-kpi-label[b-rvnks4b8jq] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.ai-kpi-sub[b-rvnks4b8jq] {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* ── CSS Bar Chart ───────────────────────────────────────────── */
.ai-chart-container[b-rvnks4b8jq] {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 160px;
    padding-top: 1rem;
}

.ai-chart-bar-group[b-rvnks4b8jq] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-width: 0;
    cursor: default;
}

.ai-chart-bar[b-rvnks4b8jq] {
    width: 100%;
    min-height: 2px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #5B2D8E, #1A6B7A);
    transition: height var(--duration-normal) var(--ease-out),
                opacity var(--duration-fast);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin-top: auto;
}

.ai-chart-bar:hover[b-rvnks4b8jq] {
    opacity: 0.85;
}

.ai-chart-bar-value[b-rvnks4b8jq] {
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    padding-top: 2px;
    white-space: nowrap;
}

.ai-chart-bar-label[b-rvnks4b8jq] {
    font-size: 0.625rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-variant-numeric: tabular-nums;
}

/* ── Request Log Badges ──────────────────────────────────────── */
.ai-model-badge[b-rvnks4b8jq] {
    background: rgba(26, 107, 122, 0.15);
    color: #22d3ee;
    font-weight: 600;
}

.ai-stage-1[b-rvnks4b8jq] {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
}

.ai-stage-2[b-rvnks4b8jq] {
    background: rgba(234, 179, 8, 0.15);
    color: #fde68a;
}

.ai-stage-default[b-rvnks4b8jq] {
    background: rgba(148, 163, 184, 0.15);
    color: var(--text-secondary);
}
/* /Components/Pages/AdminLeads.razor.rz.scp.css */
/* ── AdminLeads scoped styles ────────────────────────────────── */

/* ── Readable links on dark background ───────────────────────── */
[b-4s4h62xpuj] a.lead-link {
    color: #5bc0de;
    transition: color 0.15s ease;
}

[b-4s4h62xpuj] a.lead-link:hover {
    color: #8dd8eb;
}

[b-4s4h62xpuj] a.lead-link:visited {
    color: #5bc0de;
}

/* ── Service interest badge ──────────────────────────────────── */
[b-4s4h62xpuj] .badge-service {
    background-color: rgba(13, 202, 240, 0.15);
    color: #5bc0de;
    font-weight: 500;
}

/* ── Source badges ────────────────────────────────────────────── */
[b-4s4h62xpuj] .badge-source-ai {
    background-color: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    font-weight: 500;
}

[b-4s4h62xpuj] .badge-source-manual {
    background-color: rgba(25, 135, 84, 0.15);
    color: #63d99a;
    font-weight: 500;
}

[b-4s4h62xpuj] .badge-source-default {
    background-color: rgba(173, 181, 189, 0.15);
    color: #adb5bd;
    font-weight: 500;
}

/* ── Environment badge ───────────────────────────────────────── */
[b-4s4h62xpuj] .badge-env {
    background-color: rgba(173, 181, 189, 0.15);
    color: #ced4da;
    font-weight: 500;
}
/* /Components/Pages/AiChat.razor.rz.scp.css */
/* ═════════════════════════════════════════════
   JMAC AI Chat — Scoped Component Styles
   ═════════════════════════════════════════════ */

.chat-page[b-p5i1cvdti0] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    max-width: 800px;
    margin: 0 auto;
    background: var(--bs-body-bg);
    border-left: 1px solid var(--bs-border-color);
    border-right: 1px solid var(--bs-border-color);
}

/* ── Header ── */
.chat-header[b-p5i1cvdti0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--bs-border-color);
    background: var(--bs-body-bg);
    flex-shrink: 0;
}

.chat-header-left[b-p5i1cvdti0] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-right[b-p5i1cvdti0] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-avatar-img[b-p5i1cvdti0] {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.chat-title[b-p5i1cvdti0] {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.chat-subtitle[b-p5i1cvdti0] {
    font-size: 0.78rem;
    color: var(--bs-secondary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.chat-status-dot[b-p5i1cvdti0] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: statusPulse-b-p5i1cvdti0 2s infinite ease-in-out;
}

@keyframes statusPulse-b-p5i1cvdti0 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.chat-badge[b-p5i1cvdti0] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(124, 58, 237, 0.1);
    color: var(--brand-accent);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

/* ── Messages Container ── */
.chat-messages[b-p5i1cvdti0] {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--bs-border-color) transparent;
}

/* ── Chat Bubbles ── */
.chat-bubble[b-p5i1cvdti0] {
    display: flex;
    gap: 0.6rem;
    max-width: 85%;
    animation: bubbleIn-b-p5i1cvdti0 0.3s ease-out;
}

@keyframes bubbleIn-b-p5i1cvdti0 {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-bubble-user[b-p5i1cvdti0] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-bubble-bot[b-p5i1cvdti0] {
    align-self: flex-start;
}

.chat-bubble-avatar[b-p5i1cvdti0] {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.chat-bubble-user .chat-bubble-avatar[b-p5i1cvdti0] {
    background: rgba(124, 58, 237, 0.12);
    color: var(--brand-accent);
}

.chat-bubble-bot .chat-bubble-avatar[b-p5i1cvdti0] {
    background: transparent;
    padding: 0;
    overflow: hidden;
}

.chat-bubble-avatar-img[b-p5i1cvdti0] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.chat-bubble-body[b-p5i1cvdti0] {
    display: flex;
    flex-direction: column;
}

.chat-bubble-content[b-p5i1cvdti0] {
    padding: 0.7rem 1rem;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.55;
    word-break: break-word;
    white-space: pre-wrap;
}

.chat-bubble-user .chat-bubble-content[b-p5i1cvdti0] {
    background: var(--brand-accent);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-bubble-bot .chat-bubble-content[b-p5i1cvdti0] {
    background: var(--bs-tertiary-bg);
    color: var(--bs-body-color);
    border-bottom-left-radius: 4px;
}

/* ── Action Button (parsed from AI response) ── */
.chat-action-btn[b-p5i1cvdti0] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-accent);
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    width: fit-content;
}

.chat-action-btn:hover[b-p5i1cvdti0] {
    background: rgba(124, 58, 237, 0.15);
    color: var(--brand-accent-hover);
    border-color: rgba(124, 58, 237, 0.35);
    text-decoration: none;
}

/* ── Speak Button ── */
.chat-speak-btn[b-p5i1cvdti0] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.35rem;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    border: 1px solid var(--bs-border-color);
    background: transparent;
    color: var(--bs-secondary-color);
    font-size: 0.68rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
}

.chat-speak-btn:hover:not(:disabled)[b-p5i1cvdti0] {
    background: rgba(124, 58, 237, 0.08);
    color: var(--brand-accent);
    border-color: rgba(124, 58, 237, 0.25);
}

.chat-speak-btn:disabled[b-p5i1cvdti0] {
    opacity: 0.3;
    cursor: default;
}

/* ── Cancel Button ── */
.chat-cancel-btn[b-p5i1cvdti0] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.35rem;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.06);
    color: #ef4444;
    font-size: 0.68rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
}

.chat-cancel-btn:hover[b-p5i1cvdti0] {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.35);
}

/* ── Typing Indicator ── */
.typing-indicator[b-p5i1cvdti0] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 0;
}

.typing-indicator span[b-p5i1cvdti0] {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-accent);
    opacity: 0.4;
    animation: typingDot-b-p5i1cvdti0 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2)[b-p5i1cvdti0] {
    animation-delay: 0.15s;
}

.typing-indicator span:nth-child(3)[b-p5i1cvdti0] {
    animation-delay: 0.3s;
}

@keyframes typingDot-b-p5i1cvdti0 {
    0%, 60%, 100% { opacity: 0.25; transform: scale(0.85); }
    30% { opacity: 1; transform: scale(1.1); }
}

/* ── Input Area ── */
.chat-input-area[b-p5i1cvdti0] {
    padding: 0.85rem 1.25rem 0.6rem;
    border-top: 1px solid var(--bs-border-color);
    background: var(--bs-body-bg);
    flex-shrink: 0;
}

.chat-input-row[b-p5i1cvdti0] {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.chat-input-hint[b-p5i1cvdti0] {
    text-align: center;
    padding-top: 0.35rem;
    font-size: 0.65rem;
    color: var(--bs-secondary-color);
    opacity: 0.6;
}

/* ── Textarea ── */
.chat-textarea[b-p5i1cvdti0] {
    flex: 1;
    min-height: 44px;
    max-height: 100px;
    resize: vertical;
    background: var(--bs-tertiary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
    font-family: inherit;
    line-height: 1.5;
    color: var(--bs-body-color);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-textarea[b-p5i1cvdti0]::placeholder {
    color: var(--bs-secondary-color);
    opacity: 0.6;
}

.chat-textarea:focus[b-p5i1cvdti0] {
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.08);
}

.chat-textarea:disabled[b-p5i1cvdti0] {
    opacity: 0.4;
    cursor: default;
}

/* ── Icon Buttons (mic, send) ── */
.chat-action-icon[b-p5i1cvdti0],
.chat-send-btn[b-p5i1cvdti0] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
    background: var(--bs-tertiary-bg);
    color: var(--bs-secondary-color);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.chat-action-icon:hover:not(:disabled)[b-p5i1cvdti0],
.chat-send-btn:hover:not(:disabled)[b-p5i1cvdti0] {
    background: rgba(124, 58, 237, 0.08);
    color: var(--brand-accent);
    border-color: rgba(124, 58, 237, 0.2);
}

.chat-action-icon:disabled[b-p5i1cvdti0],
.chat-send-btn:disabled[b-p5i1cvdti0] {
    opacity: 0.3;
    cursor: default;
}

.chat-send-btn[b-p5i1cvdti0] {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: white;
}

.chat-send-btn:hover:not(:disabled)[b-p5i1cvdti0] {
    background: var(--brand-accent-hover);
    border-color: var(--brand-accent-hover);
    color: white;
}

/* ── Mic Recording State ── */
.chat-action-danger[b-p5i1cvdti0] {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    animation: micPulse-b-p5i1cvdti0 1.2s infinite ease-in-out;
}

@keyframes micPulse-b-p5i1cvdti0 {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* ── Mic Permission Message ── */
.chat-mic-message[b-p5i1cvdti0] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.4;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--bs-body-color);
}

.chat-mic-message .bi-mic-mute[b-p5i1cvdti0] {
    color: #f59e0b;
    flex-shrink: 0;
}

.chat-mic-dismiss[b-p5i1cvdti0] {
    margin-left: auto;
    background: none;
    border: none;
    padding: 0 0.15rem;
    color: var(--bs-secondary-color);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.15s ease;
}

.chat-mic-dismiss:hover[b-p5i1cvdti0] {
    opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .chat-page[b-p5i1cvdti0] {
        height: calc(100vh - 70px);
        border-left: none;
        border-right: none;
    }

    .chat-header[b-p5i1cvdti0] {
        padding: 0.85rem 1rem;
    }

    .chat-messages[b-p5i1cvdti0] {
        padding: 1rem;
    }

    .chat-bubble[b-p5i1cvdti0] {
        max-width: 92%;
    }

    .chat-input-area[b-p5i1cvdti0] {
        padding: 0.65rem 0.85rem 0.4rem;
    }

    .chat-input-hint[b-p5i1cvdti0] {
        display: none;
    }
}

@media (max-width: 480px) {
    .chat-header-right[b-p5i1cvdti0] {
        display: none;
    }

    .chat-bubble-avatar[b-p5i1cvdti0] {
        display: none;
    }

    .chat-bubble[b-p5i1cvdti0] {
        max-width: 95%;
    }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
/* ═════════════════════════════════════════════
   Contact Page — Scoped Styles
   ═════════════════════════════════════════════ */

/* Toggle styles moved to ContactSection.razor.css
   where the markup lives (Blazor CSS isolation requires it). */
/* /Components/Pages/UserDashboard.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   JMAC Web — User Dashboard (scoped)
   Dark glassmorphism design matching the site's brand tokens.
   ═══════════════════════════════════════════════════════════════ */

/* ── Page Container ──────────────────────────────────────────── */
.dash[b-soo8x2538s] {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ── Welcome Banner ──────────────────────────────────────────── */
.dash-welcome[b-soo8x2538s] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(91, 45, 142, 0.12), rgba(26, 107, 122, 0.08));
    border: 1px solid rgba(91, 45, 142, 0.15);
    border-radius: 1rem;
    padding: 1.75rem 2rem;
    flex-wrap: wrap;
}

.dash-welcome-left[b-soo8x2538s] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.dash-avatar[b-soo8x2538s] {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #5B2D8E, #1A6B7A);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-avatar img[b-soo8x2538s] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--surface-bg);
}

.dash-avatar-fallback[b-soo8x2538s] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-bg);
    font-size: 1.75rem;
    font-weight: 800;
    background-clip: padding-box;
    color: transparent;
    background-image: linear-gradient(135deg, #5B2D8E, #1A6B7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dash-greeting[b-soo8x2538s] {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}

.dash-greeting-name[b-soo8x2538s] {
    display: block;
    background: linear-gradient(135deg, #5B2D8E, #1A6B7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Quick Stats ─────────────────────────────────────────────── */
.dash-stats[b-soo8x2538s] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.dash-stat-card[b-soo8x2538s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: var(--surface-raised);
    border: 1px solid var(--surface-border);
    border-radius: 0.875rem;
    padding: 1.25rem 1rem;
    transition: all 0.25s ease;
}

.dash-stat-card:hover[b-soo8x2538s] {
    border-color: rgba(91, 45, 142, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.dash-stat-number[b-soo8x2538s] {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    background: linear-gradient(135deg, var(--text-primary), #5B2D8E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dash-stat-green[b-soo8x2538s] {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

.dash-stat-gold[b-soo8x2538s] {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

.dash-stat-red[b-soo8x2538s] {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

/* ── Security Score Radial Ring ───────────────────────────────── */
.dash-score-ring[b-soo8x2538s] {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-ring-track[b-soo8x2538s],
.dash-ring-fill[b-soo8x2538s] {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    -webkit-mask: radial-gradient(circle closest-side, transparent 81%, black 83%, black 92%, transparent 94%);
    mask: radial-gradient(circle closest-side, transparent 81%, black 83%, black 92%, transparent 94%);
}

.dash-ring-track[b-soo8x2538s] {
    background: rgba(255, 255, 255, 0.06);
}

.dash-ring-fill[b-soo8x2538s] {
    transition: background 0.6s ease;
}

.dash-ring-value[b-soo8x2538s] {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.dash-stat-label[b-soo8x2538s] {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* ── Stat Card — Clickable Link Variant ──────────────────────── */
.dash-stat-card-link[b-soo8x2538s] {
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer;
}

.dash-stat-card-link:hover[b-soo8x2538s] {
    border-color: rgba(91, 45, 142, 0.35);
}

/* ── Stat Card — Obfuscated Email ────────────────────────────── */
.dash-stat-email[b-soo8x2538s] {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* ── Stat Card — Security Hint ───────────────────────────────── */
.dash-stat-hint[b-soo8x2538s] {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.dash-stat-card-link:hover .dash-stat-hint[b-soo8x2538s] {
    opacity: 1;
}

/* ── Stat Card — Provider Icons ──────────────────────────────── */
.dash-stat-providers[b-soo8x2538s] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    margin-top: 0.25rem;
}

.dash-stat-providers svg[b-soo8x2538s] {
    vertical-align: middle;
}

.dash-provider-github[b-soo8x2538s] {
    color: #e6edf3;
}

.dash-provider-microsoft[b-soo8x2538s] {
    color: #00a4ef;
}

.dash-provider-apple[b-soo8x2538s] {
    color: #f5f5f7;
}

/* ── Stat Card — Plan + Renewal ──────────────────────────────── */
.dash-stat-plan[b-soo8x2538s] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
}

.dash-stat-plan-divider[b-soo8x2538s] {
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.25rem 0 0.15rem;
}

.dash-stat-plan-name[b-soo8x2538s] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-stat-plan-icon[b-soo8x2538s] {
    font-size: 0.85rem;
}

.dash-stat-plan-icon-active[b-soo8x2538s] {
    color: #22c55e;
}

.dash-stat-plan-icon-past_due[b-soo8x2538s] {
    color: #f59e0b;
}

.dash-stat-plan-icon-canceled[b-soo8x2538s] {
    color: #ef4444;
}

.dash-stat-plan-icon-incomplete[b-soo8x2538s],
.dash-stat-plan-icon-paused[b-soo8x2538s] {
    color: #94a3b8;
}

.dash-stat-renewal[b-soo8x2538s] {
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

/* ── Section Titles ──────────────────────────────────────────── */
.dash-section[b-soo8x2538s] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.dash-section-title[b-soo8x2538s] {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
}

/* ── Quick Actions Grid ──────────────────────────────────────── */
.dash-actions[b-soo8x2538s] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.dash-action-card[b-soo8x2538s] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--surface-raised);
    border: 1px solid var(--surface-border);
    border-radius: 0.875rem;
    padding: 1.15rem;
    text-decoration: none !important;
    color: var(--text-primary) !important;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.dash-action-card:hover[b-soo8x2538s] {
    border-color: rgba(91, 45, 142, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dash-action-icon[b-soo8x2538s] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(91, 45, 142, 0.08), rgba(26, 107, 122, 0.08));
    border: 1px solid rgba(91, 45, 142, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand-accent);
    font-size: 1.25rem;
}

.dash-action-icon-gold[b-soo8x2538s] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(217, 119, 6, 0.08));
    border-color: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.dash-action-icon-green[b-soo8x2538s] {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(22, 163, 74, 0.08));
    border-color: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.dash-action-title[b-soo8x2538s] {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.dash-action-desc[b-soo8x2538s] {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── Admin Section ───────────────────────────────────────────── */
.dash-admin-divider[b-soo8x2538s] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
    color: #f59e0b;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dash-admin-divider[b-soo8x2538s]::before,
.dash-admin-divider[b-soo8x2538s]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(245, 158, 11, 0.2);
}

.dash-admin-actions[b-soo8x2538s] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.dash-admin-card[b-soo8x2538s] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(245, 158, 11, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 0.875rem;
    padding: 1.15rem;
    text-decoration: none !important;
    color: var(--text-primary) !important;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.dash-admin-card:hover[b-soo8x2538s] {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.06);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .dash-stats[b-soo8x2538s] {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-actions[b-soo8x2538s],
    .dash-admin-actions[b-soo8x2538s] {
        grid-template-columns: 1fr;
    }

    .dash-welcome[b-soo8x2538s] {
        padding: 1.25rem;
    }

    .dash-greeting[b-soo8x2538s] {
        font-size: 1.25rem;
    }
}

/* ── Dark-mode refinements ───────────────────────────────────── */
[data-bs-theme="dark"] .dash-stat-card[b-soo8x2538s],
[data-bs-theme="dark"] .dash-action-card[b-soo8x2538s] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .dash-stat-card:hover[b-soo8x2538s],
[data-bs-theme="dark"] .dash-action-card:hover[b-soo8x2538s] {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ── Subscription Card ───────────────────────────────────────── */
.dash-sub-card[b-soo8x2538s] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(91, 45, 142, 0.06));
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 1rem;
    padding: 1.5rem;
}

.dash-sub-header[b-soo8x2538s] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.dash-sub-plan[b-soo8x2538s] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 0.75rem;
}

.dash-sub-status[b-soo8x2538s] {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.dash-sub-status-active[b-soo8x2538s] {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.dash-sub-status-past_due[b-soo8x2538s] {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.dash-sub-status-canceled[b-soo8x2538s] {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.dash-sub-status-incomplete[b-soo8x2538s],
.dash-sub-status-paused[b-soo8x2538s] {
    background: rgba(148, 163, 184, 0.12);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.dash-sub-detail[b-soo8x2538s] {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.6));
}

.dash-sub-empty[b-soo8x2538s] {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--surface-raised, rgba(255, 255, 255, 0.04));
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}
/* /Components/Shared/QrCodeDisplay.razor.rz.scp.css */
/* ── QrCodeDisplay — scoped styles ─────────────────────────── */

.qr-display[b-oro2j6t3b7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.qr-display-title[b-oro2j6t3b7] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.qr-display-subtext[b-oro2j6t3b7] {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary, #8e8ea0);
    text-align: center;
}

.qr-display-frame[b-oro2j6t3b7] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-raised, #1a1a2e);
    border: 1px solid var(--surface-border, rgba(255, 255, 255, 0.08));
    padding: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
}

[b-oro2j6t3b7] .qr-display-svg {
    display: block;
    width: 100%;
    height: 100%;
}
/* /Components/Shared/StripeEmbeddedCheckout.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════
   Stripe Embedded Checkout — Full-screen overlay panel
   ═══════════════════════════════════════════════════════════ */

.stripe-embedded-checkout-backdrop[b-8y0n5l4xcx] {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.stripe-embedded-checkout-backdrop.show[b-8y0n5l4xcx] {
    opacity: 1;
    visibility: visible;
}

.stripe-embedded-checkout-panel[b-8y0n5l4xcx] {
    width: min(96vw, 600px);
    max-height: 90vh;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
    background: var(--surface-raised, #1a1a2e);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stripe-embedded-checkout-backdrop.show .stripe-embedded-checkout-panel[b-8y0n5l4xcx] {
    transform: translateY(0) scale(1);
}

.stripe-checkout-mount-area[b-8y0n5l4xcx] {
    flex: 1;
    overflow-y: auto;
    min-height: 400px;
}

/* Scrollbar styling for the checkout area */
.stripe-checkout-mount-area[b-8y0n5l4xcx]::-webkit-scrollbar {
    width: 6px;
}

.stripe-checkout-mount-area[b-8y0n5l4xcx]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.stripe-checkout-mount-area[b-8y0n5l4xcx]::-webkit-scrollbar-track {
    background: transparent;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .stripe-embedded-checkout-panel[b-8y0n5l4xcx] {
        width: 100vw;
        max-height: 100vh;
        border-radius: 0;
    }
}
