/* _content/Carely.Web/Components/Layout/AdminLayout.razor.rz.scp.css */
/* _content/Carely.Web/Components/Layout/BottomNavigation.razor.rz.scp.css */
.bottom-nav[b-r4izlzvbc1] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* Glassmorphism effect */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1100;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08),
                0 -1px 4px rgba(0, 0, 0, 0.04);
}

.bottom-nav-content[b-r4izlzvbc1] {
    display: flex;
    align-items: flex-end;
    max-width: 430px;
    margin: 0 auto;
    padding: 8px 0 12px;
    position: relative;
}

.nav-item[b-r4izlzvbc1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 2;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    color: #64748B;
    transition: color var(--duration-fast) var(--spring-smooth),
                transform var(--duration-micro) var(--spring-bounce);
    min-width: 64px;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    border-radius: 12px;
}

.nav-item:focus[b-r4izlzvbc1],
.nav-item:focus-visible[b-r4izlzvbc1] {
    outline: none;
}

.nav-item:active[b-r4izlzvbc1] {
    transform: scale(var(--scale-pressed));
}

/* FAB container should not have any nav-item effects */
.nav-item.fab-container[b-r4izlzvbc1]::after {
    display: none;
}

/* Active nav item state */
.nav-item.active:not(.fab-container)[b-r4izlzvbc1] {
    color: #06b6d4;
}

.nav-item.active:not(.fab-container)[b-r4izlzvbc1]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    pointer-events: none;
}

.nav-label[b-r4izlzvbc1] {
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
    transition: font-weight var(--duration-fast) ease;
}

.nav-item.active .nav-label[b-r4izlzvbc1] {
    font-weight: 600;
}

/* FAB Container - extends above the nav bar */
.fab-container[b-r4izlzvbc1] {
    position: relative;
    padding: 0;
    flex: 1;
    height: 100px;
    display: flex;
    align-items: flex-end;
    align-self: flex-end;
    justify-content: center;
    margin-top: -56px;
}

/* FAB Button - the floating action button with breathing glow */
.fab-button[b-r4izlzvbc1] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform var(--duration-fast) var(--spring-bounce),
                box-shadow var(--duration-normal) var(--spring-smooth);
    position: relative;
    z-index: 10;
    border: none;
    animation: breathe-glow 3s ease-in-out infinite;
    /* Performance optimization for continuous animation */
    will-change: transform, box-shadow;
}

/* Outer glow ring */
.fab-button[b-r4izlzvbc1]::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: transparent;
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    transition: all var(--duration-normal) ease;
    pointer-events: none; /* Allow clicks to pass through */
}

/* Inner radial glow */
.fab-button[b-r4izlzvbc1]::after {
    content: '';
    position: absolute;
    inset: -12px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: opacity var(--duration-normal) ease;
    pointer-events: none; /* Allow clicks to pass through */
}

.fab-container:hover .fab-button[b-r4izlzvbc1] {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(6, 182, 212, 0.5),
                0 8px 16px rgba(0, 0, 0, 0.18);
}

.fab-container:hover .fab-button[b-r4izlzvbc1]::before {
    inset: -8px;
    border-color: rgba(6, 182, 212, 0.3);
}

.fab-container:active .fab-button[b-r4izlzvbc1] {
    transform: scale(0.92);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.35),
                0 2px 4px rgba(0, 0, 0, 0.1);
    animation: none;
}

.fab-container:active .fab-button[b-r4izlzvbc1]::before {
    inset: -2px;
}

/* Force the plus icon to be white */
.fab-button[b-r4izlzvbc1]  .mud-icon-root,
.fab-button[b-r4izlzvbc1]  svg {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

/* ==========================================
   DARK MODE SUPPORT
   ========================================== */

:global(.mud-theme-dark) .bottom-nav[b-r4izlzvbc1] {
    background: rgba(15, 23, 42, 0.9);
    border-top-color: rgba(51, 65, 85, 0.5);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3),
                0 -1px 4px rgba(0, 0, 0, 0.2);
}

:global(.mud-theme-dark) .nav-item[b-r4izlzvbc1] {
    color: #94a3b8;
}

:global(.mud-theme-dark) .nav-item.active:not(.fab-container)[b-r4izlzvbc1] {
    color: #22d3ee;
}

:global(.mud-theme-dark) .fab-button[b-r4izlzvbc1] {
    background: linear-gradient(145deg, #22d3ee 0%, #2dd4bf 100%);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.35),
                0 6px 12px rgba(0, 0, 0, 0.25);
}

:global(.mud-theme-dark) .fab-button[b-r4izlzvbc1]::before {
    border-color: rgba(34, 211, 238, 0.3);
}

:global(.mud-theme-dark) .fab-button[b-r4izlzvbc1]::after {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.25) 0%, transparent 70%);
}

:global(.mud-theme-dark) .fab-container:hover .fab-button[b-r4izlzvbc1] {
    box-shadow: 0 12px 36px rgba(34, 211, 238, 0.4),
                0 8px 16px rgba(0, 0, 0, 0.3);
}

:global(.mud-theme-dark) .fab-container:hover .fab-button[b-r4izlzvbc1]::before {
    border-color: rgba(34, 211, 238, 0.4);
}

:global(.mud-theme-dark) .fab-container:active .fab-button[b-r4izlzvbc1] {
    box-shadow: 0 4px 16px rgba(34, 211, 238, 0.3),
                0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   REDUCED MOTION
   ========================================== */

/* ==========================================
   LANDSCAPE PHONE — left side rail
   ========================================== */

@media (max-height: 500px) and (orientation: landscape) {
    .bottom-nav[b-r4izlzvbc1] {
        bottom: auto;
        right: auto;
        top: 0;
        left: 0;
        width: 70px;
        height: 100%;
        border-top: none;
        border-right: 1px solid rgba(226, 232, 240, 0.6);
        padding-bottom: 0;
        padding-left: env(safe-area-inset-left, 0);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08),
                    1px 0 4px rgba(0, 0, 0, 0.04);
    }

    .bottom-nav-content[b-r4izlzvbc1] {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        max-width: none;
        padding: 8px 0;
        gap: 4px;
    }

    .nav-item[b-r4izlzvbc1] {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 12px 0;
        min-width: 0;
        width: 100%;
    }

    .nav-label[b-r4izlzvbc1] {
        font-size: 9px;
        margin-top: 2px;
    }

    .nav-item.active:not(.fab-container)[b-r4izlzvbc1]::after {
        bottom: auto;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 24px;
    }

    .fab-container[b-r4izlzvbc1] {
        height: auto;
        margin-top: 0;
        padding: 0;
    }

    .fab-button[b-r4izlzvbc1] {
        width: 48px;
        height: 48px;
        box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3),
                    0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .fab-button[b-r4izlzvbc1]::before {
        inset: -3px;
    }

    .fab-button[b-r4izlzvbc1]::after {
        inset: -8px;
    }

    .fab-button[b-r4izlzvbc1]  .mud-icon-root {
        font-size: 1.4rem !important;
    }
}

:global(.mud-theme-dark) .bottom-nav[b-r4izlzvbc1] {
    /* re-declare so landscape dark mode picks it up too */
}

@media (max-height: 500px) and (orientation: landscape) {
    :global(.mud-theme-dark) .bottom-nav[b-r4izlzvbc1] {
        border-right-color: rgba(51, 65, 85, 0.5);
        border-top: none;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3),
                    1px 0 4px rgba(0, 0, 0, 0.2);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fab-button[b-r4izlzvbc1] {
        animation: none;
    }

    .nav-item[b-r4izlzvbc1],
    .fab-button[b-r4izlzvbc1] {
        transition: none;
    }
}
/* _content/Carely.Web/Components/Layout/LegalEntities.razor.rz.scp.css */
.entity-list[b-jvbjovrfev] {
    display: flex;
    flex-direction: column;
    padding: 0 8px;
}

.entity-item[b-jvbjovrfev] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f1f5f9;
}

.entity-item:last-child[b-jvbjovrfev] {
    border-bottom: none;
}

.entity-item:hover[b-jvbjovrfev] {
    background: rgba(0, 0, 0, 0.03);
}

.entity-item.selected[b-jvbjovrfev] {
    background: rgba(6, 182, 212, 0.06);
}

.entity-icon[b-jvbjovrfev] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: #94a3b8;
}

[b-jvbjovrfev] .entity-icon-active {
    color: #06b6d4;
}

.entity-info[b-jvbjovrfev] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.entity-name[b-jvbjovrfev] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.entity-role[b-jvbjovrfev] {
    font-size: 0.7rem;
    color: #94a3b8;
}

.entity-edit[b-jvbjovrfev] {
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.entity-item:hover .entity-edit[b-jvbjovrfev] {
    opacity: 1;
}

/* Dark mode */
:global(.mud-theme-dark) .entity-item[b-jvbjovrfev] {
    border-bottom-color: #1e293b;
}

:global(.mud-theme-dark) .entity-item:hover[b-jvbjovrfev] {
    background: rgba(255, 255, 255, 0.03);
}

:global(.mud-theme-dark) .entity-icon[b-jvbjovrfev] {
    color: #64748b;
}

:global(.mud-theme-dark) .entity-name[b-jvbjovrfev] {
    color: #f1f5f9;
}

:global(.mud-theme-dark) .entity-role[b-jvbjovrfev] {
    color: #64748b;
}
/* _content/Carely.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* ==========================================
   PAGE LAYOUT - Noteless-inspired clean design
   ========================================== */

.page[b-hmj3l0vq94] {
    position: relative;
    display: flex;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(135deg,
        #EFF6FF 0%,
        #F5F3FF 35%,
        #FDF2F8 70%,
        #ECFEFF 100%);
    background-color: #F8FAFC;
    overflow: hidden;
}

/* Desktop: horizontal layout with nav rail on left */
.desktop-layout[b-hmj3l0vq94] {
    flex-direction: row;
}

/* Mobile: vertical layout with header on top */
.mobile-layout[b-hmj3l0vq94] {
    flex-direction: column;
    /* Reserve space for the fixed bottom nav so the scroll container ends above it */
    padding-bottom: var(--bottom-page-clearance, 82px);
}

/* ==========================================
   MAIN CONTENT
   ========================================== */

.main-content[b-hmj3l0vq94] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.content[b-hmj3l0vq94] {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    padding-left: 80px;
    padding-right: 80px;
    min-width: 0;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

/* Mobile content padding */
.mobile-content[b-hmj3l0vq94] {
    padding: 16px !important;
    margin-top: 8px;
}

/* ==========================================
   RESPONSIVE PADDING
   ========================================== */

@media (max-width: 599px) {
    .content[b-hmj3l0vq94] {
        padding: 16px !important;
    }

    .page[b-hmj3l0vq94] {
        background: linear-gradient(135deg,
            #F5F9FF 0%,
            #FAF8FF 35%,
            #FEF7FB 70%,
            #F3FDFF 100%);
        background-color: #FBFCFE;
    }
}

@media (min-width: 600px) and (max-width: 959px) {
    .content[b-hmj3l0vq94] {
        padding: 24px;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 960px) {
    .content[b-hmj3l0vq94] {
        padding: 32px;
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 1600px) {
    .content[b-hmj3l0vq94] {
        padding: 40px;
        padding-left: 100px;
        padding-right: 100px;
    }
}

/* ==========================================
   AMBIENT BACKGROUND - Mesh gradient + particles
   ========================================== */

.ambient-bg[b-hmj3l0vq94] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 600px 500px at 20% 20%, rgba(6, 182, 212, 0.20), transparent),
        radial-gradient(ellipse 500px 600px at 80% 30%, rgba(168, 85, 247, 0.12), transparent),
        radial-gradient(ellipse 600px 400px at 60% 80%, rgba(20, 184, 166, 0.15), transparent),
        radial-gradient(ellipse 400px 500px at 30% 70%, rgba(244, 114, 182, 0.10), transparent);
    background-size: 200% 200%;
    animation: meshShift-b-hmj3l0vq94 25s ease-in-out infinite;
}

.ambient-canvas[b-hmj3l0vq94] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    width: 100%;
    height: 100%;
}

@keyframes meshShift-b-hmj3l0vq94 {
    0%, 100% { background-position: 0% 0%, 100% 0%, 50% 100%, 0% 50%; }
    25% { background-position: 30% 20%, 70% 50%, 80% 70%, 20% 80%; }
    50% { background-position: 60% 40%, 40% 70%, 20% 30%, 80% 60%; }
    75% { background-position: 40% 60%, 60% 20%, 70% 50%, 50% 30%; }
}

:global(.mud-theme-dark) .ambient-bg[b-hmj3l0vq94] {
    background:
        radial-gradient(ellipse 600px 500px at 20% 20%, rgba(34, 211, 238, 0.08), transparent),
        radial-gradient(ellipse 500px 600px at 80% 30%, rgba(168, 85, 247, 0.05), transparent),
        radial-gradient(ellipse 600px 400px at 60% 80%, rgba(20, 184, 166, 0.06), transparent),
        radial-gradient(ellipse 400px 500px at 30% 70%, rgba(244, 114, 182, 0.04), transparent);
    background-size: 200% 200%;
}

@media (prefers-reduced-motion: reduce) {
    .ambient-bg[b-hmj3l0vq94] {
        animation: none !important;
    }
}

/* ==========================================
   BLAZOR ERROR UI
   ========================================== */

#blazor-error-ui[b-hmj3l0vq94] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-hmj3l0vq94] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ==========================================
   MUDBLAZOR OVERRIDES
   ========================================== */

.mud-main-content[b-hmj3l0vq94] {
    padding-top: 0px;
}

/* Landscape phone — nav rail on left instead of bottom */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-layout[b-hmj3l0vq94] {
        padding-bottom: 0;
        padding-left: 70px;
    }

    .mobile-content[b-hmj3l0vq94] {
        margin-top: 0 !important;
        padding-top: 8px !important;
    }
}

/* Hide old drawer on mobile (Xs + Sm breakpoints) */
@media (max-width: 959.95px) {
    [b-hmj3l0vq94] .mud-drawer-container,
    [b-hmj3l0vq94] .mud-drawer {
        display: none !important;
        visibility: hidden !important;
    }
}

/* ==========================================
   DARK MODE
   ========================================== */

:global(.mud-theme-dark) .page[b-hmj3l0vq94] {
    background: #0F172A;
}
/* _content/Carely.Web/Components/Layout/MenuContent.razor.rz.scp.css */
/* Fix persistent drawer to push content instead of overlay */
[b-hdh5sfwkfg] .mud-drawer-open-persistent-left > main {
    margin-left: 260px !important;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When drawer is closed, no margin */
[b-hdh5sfwkfg] .mud-drawer-close-persistent-left > main {
    margin-left: 0 !important;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure smooth transitions */
[b-hdh5sfwkfg] .mud-drawer {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Make sure main element can shrink */
[b-hdh5sfwkfg] .mud-drawer-open-persistent-left > main,
[b-hdh5sfwkfg] .mud-drawer-close-persistent-left > main {
    min-width: 0;
    width: auto;
    max-width: 100%;
}

/* Flexbox layout for drawer - make it a flex container */
[b-hdh5sfwkfg] .mud-drawer {
    display: flex !important;
    flex-direction: column !important;
    height: 100vh !important;
    max-height: calc(100vh - 64px) !important;
}

/* Drawer header should not shrink */
[b-hdh5sfwkfg] .mud-drawer .mud-drawer-header {
    flex-shrink: 0 !important;
}

/* Drawer content should fill remaining space and be a flex container */
[b-hdh5sfwkfg] .mud-drawer .mud-drawer-content {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-height: 0 !important;
    overflow: visible !important;
}

/* Session item with delete button */
.session-item-wrapper[b-hdh5sfwkfg] {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 12px; /* Updated for landing page style */
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.session-item-wrapper:hover[b-hdh5sfwkfg] {
    background-color: rgba(6, 182, 212, 0.06); /* Primary color at 6% */
}

.session-item-wrapper.selected[b-hdh5sfwkfg] {
    background-color: rgba(6, 182, 212, 0.10); /* Primary color at 10% */
    box-shadow: inset 3px 0 0 0 #06b6d4; /* Left border indicator */
}

.session-item-wrapper.selected:hover[b-hdh5sfwkfg] {
    background-color: rgba(6, 182, 212, 0.14); /* Primary color at 14% */
}

/* Disable hover effect on the button itself since we're styling the wrapper */
.session-item-wrapper[b-hdh5sfwkfg]  .mud-button:hover {
    background-color: transparent !important;
}

.session-delete-btn-wrapper[b-hdh5sfwkfg] {
    display: none;
    position: absolute;
    right: 0;
    z-index: 1;
    padding-right: 4px;
    pointer-events: none;
}

.session-delete-btn-wrapper[b-hdh5sfwkfg]  button {
    pointer-events: auto;
}

.session-item-wrapper:hover .session-delete-btn-wrapper[b-hdh5sfwkfg] {
    display: flex;
}

.sessions[b-hdh5sfwkfg] {
    margin-left: 16px;
    margin-right: 16px;
}

/* Hide drawer on mobile - prevents flash during load */
@media (max-width: 599.95px) {
    [b-hdh5sfwkfg] .mud-drawer-container,
    [b-hdh5sfwkfg] .mud-drawer {
        display: none !important;
        visibility: hidden !important;
    }
}
/* _content/Carely.Web/Components/Layout/MobileBottomSheet.razor.rz.scp.css */
[b-mvk5vi506i] .bottom-sheet {
    border-radius: 24px 24px 0 0;
    max-height: 70vh;
}

[b-mvk5vi506i] .bottom-sheet .mud-drawer-content {
    border-radius: 24px 24px 0 0;
}

.bottom-sheet-header[b-mvk5vi506i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E2E8F0;
    padding: 16px 24px;
}

.bottom-sheet-content[b-mvk5vi506i] {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: env(safe-area-inset-bottom, 16px);
    max-height: calc(70vh - 64px);
}
/* _content/Carely.Web/Components/Layout/MobileHeader.razor.rz.scp.css */
.mobile-header[b-4d09bhxfzl] {
    background: transparent;
    border-bottom: none;
    flex-shrink: 0;
    z-index: 100;
}

.mobile-header-content[b-4d09bhxfzl] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
}

.mobile-header-logo-link[b-4d09bhxfzl] {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

:global(.mud-theme-dark) .mobile-header[b-4d09bhxfzl] {
    background: transparent;
}

/* Landscape phone — hide header to maximize vertical space */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-header[b-4d09bhxfzl] {
        display: none;
    }
}
/* _content/Carely.Web/Components/Layout/NavRail.razor.rz.scp.css */
/* ==========================================
   NAV RAIL - Noteless-style left navigation
   ========================================== */

.nav-rail[b-1099fj46ab] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 88px;
    min-width: 88px;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid rgba(226, 232, 240, 0.6);
    padding: 16px 0;
    z-index: 100;
    flex-shrink: 0;
}

.nav-rail-header[b-1099fj46ab] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-rail-logo[b-1099fj46ab] {
    height: 40px;
    width: auto;
}

/* ==========================================
   NAV ITEMS
   ========================================== */

.nav-rail-items[b-1099fj46ab] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-rail-group[b-1099fj46ab] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nav-rail-label[b-1099fj46ab] {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    color: #64748B;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 76px;
    user-select: none;
}

.nav-rail-group-new[b-1099fj46ab] {
    margin: 6px 0;
    gap: 11px;
}

.nav-rail-label-new[b-1099fj46ab] {
    color: #0d9488;
    font-weight: 600;
}

[b-1099fj46ab] .nav-rail-new-session {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(145deg, #06b6d4 0%, #14b8a6 100%);
    color: #FFFFFF !important;
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

[b-1099fj46ab] .nav-rail-new-session:hover {
    background: linear-gradient(145deg, #0891b2 0%, #0d9488 100%);
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.4);
}

[b-1099fj46ab] .nav-rail-item {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: #64748B;
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

[b-1099fj46ab] .nav-rail-item:hover {
    background-color: rgba(6, 182, 212, 0.08);
    color: #0891b2;
}

[b-1099fj46ab] .nav-rail-item.active {
    background-color: rgba(6, 182, 212, 0.12);
    color: #06b6d4;
}


/* ==========================================
   NAV FOOTER
   ========================================== */

.nav-rail-footer[b-1099fj46ab] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    width: 100%;
}

[b-1099fj46ab] .nav-rail-avatar {
    cursor: pointer;
    background: linear-gradient(145deg, #06b6d4 0%, #14b8a6 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[b-1099fj46ab] .nav-rail-avatar:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

/* ==========================================
   SESSIONS PANEL - Expandable side panel
   ========================================== */

.sessions-panel[b-1099fj46ab] {
    display: flex;
    flex-direction: column;
    width: 260px;
    min-width: 260px;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid rgba(226, 232, 240, 0.6);
    animation: slideIn-b-1099fj46ab 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

@keyframes slideIn-b-1099fj46ab {
    from {
        width: 0;
        min-width: 0;
        opacity: 0;
    }
    to {
        width: 260px;
        min-width: 260px;
        opacity: 1;
    }
}

.sessions-panel-closing[b-1099fj46ab] {
    animation: slideOut-b-1099fj46ab 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideOut-b-1099fj46ab {
    from {
        width: 260px;
        min-width: 260px;
        opacity: 1;
    }
    to {
        width: 0;
        min-width: 0;
        opacity: 0;
    }
}

.sessions-panel-header[b-1099fj46ab] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 12px;
    flex-shrink: 0;
}

.sessions-panel-content[b-1099fj46ab] {
    flex: 1;
    overflow-y: auto;
    padding: 0 12px 16px;
    min-height: 0;
}

/* ==========================================
   DARK MODE
   ========================================== */

:global(.mud-theme-dark) .nav-rail[b-1099fj46ab] {
    background: rgba(15, 23, 42, 0.9);
    border-right-color: rgba(51, 65, 85, 0.6);
}

:global(.mud-theme-dark)[b-1099fj46ab]  .nav-rail-item {
    color: #94A3B8;
}

:global(.mud-theme-dark)[b-1099fj46ab]  .nav-rail-item:hover {
    background-color: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
}

:global(.mud-theme-dark)[b-1099fj46ab]  .nav-rail-item.active {
    background-color: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
}

:global(.mud-theme-dark) .nav-rail-label[b-1099fj46ab] {
    color: #94A3B8;
}

:global(.mud-theme-dark) .nav-rail-footer[b-1099fj46ab] {
    border-top-color: rgba(51, 65, 85, 0.6);
}

:global(.mud-theme-dark) .sessions-panel[b-1099fj46ab] {
    background: rgba(15, 23, 42, 0.95);
    border-right-color: rgba(51, 65, 85, 0.6);
}
/* _content/Carely.Web/Components/Layout/TopBar.razor.rz.scp.css */
/* _content/Carely.Web/Components/Pages/Account/Profile.razor.rz.scp.css */
/* ==========================================
   PROFILE PAGE LAYOUT
   ========================================== */

.profile-page[b-j4weu8q8j7] {
    max-width: 600px;
    margin: 0 auto;
    padding: 12px 16px;
    animation: fade-up-b-j4weu8q8j7 var(--duration-slow) var(--ease-out-expo);
}

.profile-page.mobile[b-j4weu8q8j7] {
    padding-bottom: 0;
}

/* Profile Header */
.profile-header[b-j4weu8q8j7] {
    margin-bottom: 24px;
    animation: fade-up-b-j4weu8q8j7 var(--duration-slow) var(--ease-out-expo);
}

.profile-title[b-j4weu8q8j7] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary, #1e293b);
    margin: 0 0 4px 0;
    letter-spacing: -0.02em;
}

.profile-subtitle[b-j4weu8q8j7] {
    font-size: 0.875rem;
    color: var(--color-text-tertiary, #64748b);
    margin: 0;
}

:global(.mud-theme-dark) .profile-title[b-j4weu8q8j7] {
    color: #f1f5f9;
}

:global(.mud-theme-dark) .profile-subtitle[b-j4weu8q8j7] {
    color: #94a3b8;
}

/* ==========================================
   PROFILE CARD (Avatar + Name)
   ========================================== */

.profile-card[b-j4weu8q8j7] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 24px;
    background: var(--color-surface, #ffffff);
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 1rem;
    animation: fade-up-b-j4weu8q8j7 var(--duration-slow) var(--ease-out-expo);
}

.profile-card--clickable[b-j4weu8q8j7] {
    cursor: pointer;
    transition: background-color var(--duration-fast) ease,
                box-shadow var(--duration-fast) ease;
}

.profile-card--clickable:hover[b-j4weu8q8j7] {
    background-color: rgba(6, 182, 212, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.profile-card--clickable:active[b-j4weu8q8j7] {
    background-color: rgba(6, 182, 212, 0.08);
}

.profile-card-chevron[b-j4weu8q8j7] {
    margin-left: auto;
    color: var(--color-text-tertiary, #94a3b8);
    flex-shrink: 0;
}

:global(.mud-theme-dark) .profile-card[b-j4weu8q8j7] {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(51, 65, 85, 0.5);
}

:global(.mud-theme-dark) .profile-card--clickable:hover[b-j4weu8q8j7] {
    background-color: rgba(6, 182, 212, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

:global(.mud-theme-dark) .profile-card-chevron[b-j4weu8q8j7] {
    color: #64748b;
}

.profile-avatar[b-j4weu8q8j7] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, #06b6d4 0%, #14b8a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.avatar-initials[b-j4weu8q8j7] {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.profile-info[b-j4weu8q8j7] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-name[b-j4weu8q8j7] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary, #1e293b);
    margin: 0;
}

.profile-email[b-j4weu8q8j7] {
    font-size: 0.875rem;
    color: var(--color-text-tertiary, #64748b);
    margin: 0;
}

:global(.mud-theme-dark) .profile-name[b-j4weu8q8j7] {
    color: #f1f5f9;
}

:global(.mud-theme-dark) .profile-email[b-j4weu8q8j7] {
    color: #94a3b8;
}

/* Loading Container */
.loading-container[b-j4weu8q8j7] {
    display: flex;
    justify-content: center;
    padding: 48px;
}

/* ==========================================
   SETTINGS GROUPS
   ========================================== */

.settings-group[b-j4weu8q8j7] {
    background: var(--color-surface, #ffffff);
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 16px;
    animation: fade-up-b-j4weu8q8j7 var(--duration-slow) var(--ease-out-expo);
    animation-fill-mode: both;
}

.settings-group:nth-child(2)[b-j4weu8q8j7] { animation-delay: 50ms; }
.settings-group:nth-child(3)[b-j4weu8q8j7] { animation-delay: 100ms; }
.settings-group:nth-child(4)[b-j4weu8q8j7] { animation-delay: 150ms; }
.settings-group:nth-child(5)[b-j4weu8q8j7] { animation-delay: 200ms; }

:global(.mud-theme-dark) .settings-group[b-j4weu8q8j7] {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(51, 65, 85, 0.5);
}

/* Settings Group Header */
.settings-group-header[b-j4weu8q8j7] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary, #475569);
    border-bottom: 1px solid var(--color-border, #e5e7eb);
}

:global(.mud-theme-dark) .settings-group-header[b-j4weu8q8j7] {
    color: #cbd5e1;
    border-bottom-color: rgba(51, 65, 85, 0.5);
}

/* ==========================================
   SETTINGS ICONS
   ========================================== */

.settings-icon[b-j4weu8q8j7] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
}

.settings-icon--rose[b-j4weu8q8j7] {
    background: rgba(251, 207, 232, 0.6);
    color: #f43f5e;
}

.settings-icon--violet[b-j4weu8q8j7] {
    background: rgba(221, 214, 254, 0.6);
    color: #8b5cf6;
}

.settings-icon--cyan[b-j4weu8q8j7] {
    background: rgba(165, 243, 252, 0.6);
    color: #06b6d4;
}

.settings-icon--teal[b-j4weu8q8j7] {
    background: rgba(153, 246, 228, 0.6);
    color: #14b8a6;
}

/* Dark mode icon styles */
:global(.mud-theme-dark) .settings-icon--rose[b-j4weu8q8j7] {
    background: rgba(244, 63, 94, 0.2);
    color: #fb7185;
}

:global(.mud-theme-dark) .settings-icon--violet[b-j4weu8q8j7] {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

:global(.mud-theme-dark) .settings-icon--cyan[b-j4weu8q8j7] {
    background: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

:global(.mud-theme-dark) .settings-icon--teal[b-j4weu8q8j7] {
    background: rgba(20, 184, 166, 0.2);
    color: #2dd4bf;
}

/* ==========================================
   SETTINGS ITEMS
   ========================================== */

.settings-item[b-j4weu8q8j7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    transition: background-color var(--duration-fast) ease;
}

.settings-item:hover[b-j4weu8q8j7] {
    background-color: rgba(6, 182, 212, 0.04);
}

:global(.mud-theme-dark) .settings-item:hover[b-j4weu8q8j7] {
    background-color: rgba(6, 182, 212, 0.08);
}

.settings-item + .settings-item[b-j4weu8q8j7] {
    border-top: 1px solid var(--color-border, #e5e7eb);
}

:global(.mud-theme-dark) .settings-item + .settings-item[b-j4weu8q8j7] {
    border-top-color: rgba(51, 65, 85, 0.5);
}

.settings-item-left[b-j4weu8q8j7] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.settings-item-content[b-j4weu8q8j7] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.settings-item-label[b-j4weu8q8j7] {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-primary, #1e293b);
}

.settings-item-value[b-j4weu8q8j7] {
    font-size: 0.8125rem;
    color: var(--color-text-tertiary, #64748b);
}

:global(.mud-theme-dark) .settings-item-label[b-j4weu8q8j7] {
    color: #f1f5f9;
}

:global(.mud-theme-dark) .settings-item-value[b-j4weu8q8j7] {
    color: #94a3b8;
}

.settings-item-right[b-j4weu8q8j7] {
    display: flex;
    align-items: center;
}

/* Theme toggle switch styling */
.theme-toggle[b-j4weu8q8j7]  .mud-switch {
    margin: 0;
}

/* ==========================================
   SETTINGS FORMS
   ========================================== */

.settings-form[b-j4weu8q8j7] {
    padding: 16px;
}

/* Input fields styling */
.settings-form[b-j4weu8q8j7]  .mud-input-outlined {
    transition: all var(--duration-fast) ease;
}

.settings-form[b-j4weu8q8j7]  .mud-input-outlined:hover .mud-input-control-input-container {
    border-color: rgba(6, 182, 212, 0.3);
}

.settings-form[b-j4weu8q8j7]  .mud-input-outlined.mud-input-focused .mud-input-control-input-container {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.12);
}

/* Primary buttons */
.settings-form[b-j4weu8q8j7]  .mud-button-filled.mud-button-primary {
    background: var(--gradient-primary) !important;
    box-shadow: var(--shadow-primary) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600;
    padding: 10px 24px !important;
    min-height: 48px;
    transition: transform var(--duration-fast) var(--spring-bounce),
                box-shadow var(--duration-normal) var(--spring-smooth) !important;
}

.settings-form[b-j4weu8q8j7]  .mud-button-filled.mud-button-primary:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.45), 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

.settings-form[b-j4weu8q8j7]  .mud-button-filled.mud-button-primary:active:not(:disabled) {
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* ==========================================
   LOGOUT BUTTON
   ========================================== */

.logout-container[b-j4weu8q8j7] {
    padding: 16px 0;
    margin-top: 8px;
}

.logout-button[b-j4weu8q8j7] {
    border-color: #dc2626 !important;
    color: #dc2626 !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600;
    transition: all var(--duration-fast) var(--spring-bounce) !important;
}

.logout-button:hover[b-j4weu8q8j7] {
    background: rgba(220, 38, 38, 0.08) !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}

/* ==========================================
   ALERTS
   ========================================== */

[b-j4weu8q8j7] .mud-alert {
    border-radius: 8px;
    animation: fade-up-b-j4weu8q8j7 var(--duration-normal) var(--ease-out-expo);
}

/* ==========================================
   ANIMATIONS
   ========================================== */

/* ==========================================
   SETTINGS SELECT CONTROLS
   ========================================== */

.settings-item-right--select[b-j4weu8q8j7] {
    min-width: 140px;
}

.settings-select[b-j4weu8q8j7]  .mud-input-outlined {
    font-size: 0.875rem;
}

.settings-select[b-j4weu8q8j7]  .mud-select .mud-input-slot {
    padding-top: 6px;
    padding-bottom: 6px;
}

@keyframes fade-up-b-j4weu8q8j7 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/Carely.Web/Components/Pages/Account/ProfilePersonal.razor.rz.scp.css */
.profile-personal-page[b-ntl21cr3hn] {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 16px;
    animation: fade-up-b-ntl21cr3hn var(--duration-slow) var(--ease-out-expo);
}

.profile-personal-page.mobile[b-ntl21cr3hn] {
    padding-bottom: calc(var(--bottom-page-clearance) + 16px);
}

.profile-personal-header[b-ntl21cr3hn] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    animation: fade-up-b-ntl21cr3hn var(--duration-slow) var(--ease-out-expo);
}

.profile-personal-title[b-ntl21cr3hn] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary, #1e293b);
    margin: 0 0 4px 0;
    letter-spacing: -0.02em;
}

.profile-personal-subtitle[b-ntl21cr3hn] {
    font-size: 0.875rem;
    color: var(--color-text-tertiary, #64748b);
    margin: 0;
}

:global(.mud-theme-dark) .profile-personal-title[b-ntl21cr3hn] {
    color: #f1f5f9;
}

:global(.mud-theme-dark) .profile-personal-subtitle[b-ntl21cr3hn] {
    color: #94a3b8;
}

.back-button[b-ntl21cr3hn] {
    color: var(--color-text-secondary, #475569) !important;
    flex-shrink: 0;
}

:global(.mud-theme-dark) .back-button[b-ntl21cr3hn] {
    color: #cbd5e1 !important;
}

.loading-container[b-ntl21cr3hn] {
    display: flex;
    justify-content: center;
    padding: 48px;
}

.settings-group[b-ntl21cr3hn] {
    background: var(--color-surface, #ffffff);
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 16px;
    animation: fade-up-b-ntl21cr3hn var(--duration-slow) var(--ease-out-expo);
    animation-fill-mode: both;
}

.settings-group:nth-child(2)[b-ntl21cr3hn] { animation-delay: 50ms; }
.settings-group:nth-child(3)[b-ntl21cr3hn] { animation-delay: 100ms; }

:global(.mud-theme-dark) .settings-group[b-ntl21cr3hn] {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(51, 65, 85, 0.5);
}

.settings-group-header[b-ntl21cr3hn] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary, #475569);
    border-bottom: 1px solid var(--color-border, #e5e7eb);
}

:global(.mud-theme-dark) .settings-group-header[b-ntl21cr3hn] {
    color: #cbd5e1;
    border-bottom-color: rgba(51, 65, 85, 0.5);
}

.settings-icon[b-ntl21cr3hn] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
}

.settings-icon--cyan[b-ntl21cr3hn] {
    background: rgba(165, 243, 252, 0.6);
    color: #06b6d4;
}

.settings-icon--rose[b-ntl21cr3hn] {
    background: rgba(251, 207, 232, 0.6);
    color: #f43f5e;
}

:global(.mud-theme-dark) .settings-icon--cyan[b-ntl21cr3hn] {
    background: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

:global(.mud-theme-dark) .settings-icon--rose[b-ntl21cr3hn] {
    background: rgba(244, 63, 94, 0.2);
    color: #fb7185;
}

.settings-form[b-ntl21cr3hn] {
    padding: 16px;
}

.settings-form[b-ntl21cr3hn]  .mud-input-outlined {
    transition: all var(--duration-fast) ease;
}

.settings-form[b-ntl21cr3hn]  .mud-input-outlined:hover .mud-input-control-input-container {
    border-color: rgba(6, 182, 212, 0.3);
}

.settings-form[b-ntl21cr3hn]  .mud-input-outlined.mud-input-focused .mud-input-control-input-container {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.12);
}

.settings-form[b-ntl21cr3hn]  .mud-button-filled.mud-button-primary {
    background: var(--gradient-primary) !important;
    box-shadow: var(--shadow-primary) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600;
    padding: 10px 24px !important;
    min-height: 48px;
    transition: transform var(--duration-fast) var(--spring-bounce),
                box-shadow var(--duration-normal) var(--spring-smooth) !important;
}

.settings-form[b-ntl21cr3hn]  .mud-button-filled.mud-button-primary:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.45), 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

.settings-form[b-ntl21cr3hn]  .mud-button-filled.mud-button-primary:active:not(:disabled) {
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

[b-ntl21cr3hn] .mud-alert {
    border-radius: 8px;
    animation: fade-up-b-ntl21cr3hn var(--duration-normal) var(--ease-out-expo);
}

@keyframes fade-up-b-ntl21cr3hn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/Carely.Web/Components/Pages/Admin/AiCosts.razor.rz.scp.css */
/* Ensure MudTable uses flexbox to push pager to bottom */
[b-l1um8usi26] .mud-table {
    display: flex;
    flex-direction: column;
}

[b-l1um8usi26] .mud-table .mud-table-container {
    flex-grow: 1;
}

[b-l1um8usi26] .mud-table .mud-table-pagination {
    margin-top: auto;
}

.kpi-cards-row[b-l1um8usi26] {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.provider-split-bar[b-l1um8usi26] {
    display: flex;
    width: 100%;
    height: 38px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--mud-palette-background-grey);
}

.provider-split-segment[b-l1um8usi26] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.provider-split-segment.speechmatics[b-l1um8usi26] {
    background: #2196F3;
}

.provider-split-segment.azure-openai[b-l1um8usi26] {
    background: #4CAF50;
}

@media (max-width: 1600px) {
    .kpi-cards-row[b-l1um8usi26] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .kpi-cards-row[b-l1um8usi26] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .kpi-cards-row[b-l1um8usi26] {
        grid-template-columns: 1fr;
    }
}
/* _content/Carely.Web/Components/Pages/History.razor.rz.scp.css */
/* ==========================================
   HISTORY PAGE LAYOUT
   ========================================== */

.history-page[b-sh1xfj0miw] {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    padding: 4px 0;
    min-height: 100%;
}

.history-page.mobile[b-sh1xfj0miw] {
    padding-bottom: 0;
}

/* ==========================================
   LOADING & EMPTY STATES
   ========================================== */

.loading-container[b-sh1xfj0miw] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px;
}

.empty-state[b-sh1xfj0miw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    text-align: center;
}

.empty-icon[b-sh1xfj0miw] {
    color: #94a3b8;
    margin-bottom: 12px;
}

.empty-text[b-sh1xfj0miw] {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0;
}

/* ==========================================
   SESSIONS LIST
   ========================================== */

.sessions-list[b-sh1xfj0miw] {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.session-group[b-sh1xfj0miw] {
    margin-bottom: 4px;
}

.session-group-header[b-sh1xfj0miw] {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    padding: 6px 4px 6px;
    margin: 0;
}

/* ==========================================
   SESSION ITEM - Single line with icons
   ========================================== */

.session-item[b-sh1xfj0miw] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 4px;
    background: transparent;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.session-item:last-child[b-sh1xfj0miw] {
    border-bottom: none;
}

.session-item:hover[b-sh1xfj0miw] {
    background: rgba(0, 0, 0, 0.02);
}

.session-item.selected[b-sh1xfj0miw] {
    background: rgba(6, 182, 212, 0.06);
}

.session-item-button[b-sh1xfj0miw] {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 18px 0;
    gap: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.session-item-button:active[b-sh1xfj0miw] {
    background: rgba(0, 0, 0, 0.04);
}

/* Three-dot menu */
.session-menu[b-sh1xfj0miw] {
    flex-shrink: 0;
}

.session-menu[b-sh1xfj0miw]  .mud-icon-button {
    color: #94a3b8;
    padding: 4px;
}

.session-menu[b-sh1xfj0miw]  .mud-icon-button:hover {
    color: #64748b;
}

[b-sh1xfj0miw] .delete-item {
    color: #ef4444;
}

[b-sh1xfj0miw] .delete-item .mud-icon-root {
    color: #ef4444;
}

/* Left icon */
.session-icon[b-sh1xfj0miw] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #94a3b8;
}

/* Title - single line, takes remaining space */
.session-title[b-sh1xfj0miw] {
    flex: 1;
    min-width: 0;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #1e293b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.session-time[b-sh1xfj0miw] {
    font-weight: 400;
    color: #64748b;
}

.session-name[b-sh1xfj0miw] {
    font-weight: 500;
    color: #1e293b;
}

.session-interaction-type[b-sh1xfj0miw] {
    font-weight: 400;
    color: #64748b;
}

/* Right status icon */
.session-status[b-sh1xfj0miw] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.session-status[b-sh1xfj0miw]  .status-done {
    color: #06b6d4;
}

.session-status[b-sh1xfj0miw]  .status-draft {
    color: #f59e0b;
}

.session-status[b-sh1xfj0miw]  .status-empty {
    color: #e2e8f0;
}

/* ==========================================
   DARK MODE
   ========================================== */

:global(.mud-theme-dark) .session-group-header[b-sh1xfj0miw] {
    color: #64748b;
}

:global(.mud-theme-dark) .session-item[b-sh1xfj0miw] {
    border-bottom-color: #1e293b;
}

:global(.mud-theme-dark) .session-item:hover[b-sh1xfj0miw] {
    background: rgba(255, 255, 255, 0.03);
}

:global(.mud-theme-dark) .session-menu[b-sh1xfj0miw]  .mud-icon-button {
    color: #64748b;
}

:global(.mud-theme-dark) .session-menu[b-sh1xfj0miw]  .mud-icon-button:hover {
    color: #94a3b8;
}

:global(.mud-theme-dark) .session-icon[b-sh1xfj0miw] {
    color: #64748b;
}

:global(.mud-theme-dark) .session-title[b-sh1xfj0miw] {
    color: #f1f5f9;
}

:global(.mud-theme-dark) .session-time[b-sh1xfj0miw] {
    color: #94a3b8;
}

:global(.mud-theme-dark) .session-name[b-sh1xfj0miw] {
    color: #f1f5f9;
}

:global(.mud-theme-dark) .session-interaction-type[b-sh1xfj0miw] {
    color: #94a3b8;
}

:global(.mud-theme-dark) .session-status[b-sh1xfj0miw]  .status-empty {
    color: #334155;
}

:global(.mud-theme-dark) .session-status[b-sh1xfj0miw]  .status-done {
    color: #22d3ee;
}

/* _content/Carely.Web/Components/Pages/Home.razor.rz.scp.css */
/* ==========================================
   HOME PAGE - Modern landing design
   ========================================== */

/* ==========================================
   DESKTOP LANDING
   ========================================== */

.desktop-landing[b-3whldj83la] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 64px);
    padding: 0 32px;
}

/* Hero section */
.desktop-hero[b-3whldj83la] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 12vh;
    padding-bottom: 48px;
    animation: heroEnter-b-3whldj83la 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-greeting[b-3whldj83la] {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: center;
    margin: 0;
}

.hero-subtitle[b-3whldj83la] {
    font-size: 1.1rem;
    font-weight: 400;
    color: #64748b;
    margin: 0;
    text-align: center;
    max-width: 640px;
    line-height: 1.6;
}

.hero-no-entity[b-3whldj83la] {
    max-width: 400px;
}

/* CTA button styling */
.desktop-hero[b-3whldj83la]  .mud-button-filled {
    position: relative;
    text-transform: none !important;
}

.desktop-hero[b-3whldj83la]  .mud-button-filled:hover {
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.5) !important;
    transform: translateY(-2px) !important;
}

.desktop-hero[b-3whldj83la]  .mud-button-filled:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 12px rgba(6, 182, 212, 0.3) !important;
}

/* Sessions section */
.desktop-sessions[b-3whldj83la] {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: sessionsEnter-b-3whldj83la 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    animation-delay: 0.15s;
    animation-fill-mode: both;
}


/* ==========================================
   MOBILE LANDING PAGE
   ========================================== */

.mobile-landing[b-3whldj83la] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0;
    overflow-y: auto;
}

.mobile-hero[b-3whldj83la] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 24px 24px;
    flex: 1;
    min-height: 0;
    animation: heroEnter-b-3whldj83la 0.4s ease-out;
}

.mobile-greeting[b-3whldj83la] {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.mobile-subtitle[b-3whldj83la] {
    font-size: 0.95rem;
    font-weight: 400;
    color: #64748b;
    margin: 0;
    max-width: 320px;
    line-height: 1.5;
}

.mobile-fab-hint[b-3whldj83la] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    animation: hintFadeIn-b-3whldj83la 0.6s ease-out 0.4s both;
}

.fab-hint-row[b-3whldj83la] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fab-hint-text[b-3whldj83la] {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
}

.fab-hint-button[b-3whldj83la] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(145deg, #06b6d4 0%, #14b8a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

[b-3whldj83la] .fab-hint-icon {
    color: #fff !important;
    font-size: 1.1rem !important;
}

[b-3whldj83la] .fab-hint-arrow {
    color: #06b6d4;
    animation: bounceDown-b-3whldj83la 2s ease-in-out infinite;
}

@keyframes bounceDown-b-3whldj83la {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes hintFadeIn-b-3whldj83la {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dark mode */
:global(.mud-theme-dark) .fab-hint-text[b-3whldj83la] {
    color: #64748b;
}

:global(.mud-theme-dark)[b-3whldj83la]  .fab-hint-arrow {
    color: #22d3ee;
}

:global(.mud-theme-dark) .mobile-greeting[b-3whldj83la] {
    color: #f8fafc;
}

:global(.mud-theme-dark) .mobile-subtitle[b-3whldj83la] {
    color: #94a3b8;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes heroEnter-b-3whldj83la {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sessionsEnter-b-3whldj83la {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   DARK MODE
   ========================================== */

:global(.mud-theme-dark) .hero-greeting[b-3whldj83la] {
    color: #f8fafc;
}

:global(.mud-theme-dark) .hero-subtitle[b-3whldj83la] {
    color: #94a3b8;
}

:global(.mud-theme-dark) .greeting-text[b-3whldj83la] {
    color: #F8FAFC;
}

:global(.mud-theme-dark) .greeting-subtitle[b-3whldj83la] {
    color: #94A3B8;
}


/* ==========================================
   REDUCED MOTION
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    .desktop-hero[b-3whldj83la],
    .desktop-sessions[b-3whldj83la],
    .mobile-landing-content[b-3whldj83la] {
        animation: none;
    }
}
/* _content/Carely.Web/Components/Pages/InteractionTypeSelection.razor.rz.scp.css */
/* Selection page container */
.selection-page-container[b-v5djd7pr5u] {
    padding-top: 16px;
    padding-bottom: var(--bottom-page-clearance); /* Centralized safe area for bottom nav */
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
}

/* Desktop: more top margin */
@media (min-width: 600px) {
    .selection-page-container[b-v5djd7pr5u] {
        padding-top: 64px;
    }
}

/* Loading state */
.loading-container[b-v5djd7pr5u] {
    min-height: 50vh;
}

/* Main content wrapper */
.selection-content[b-v5djd7pr5u] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Header section */
.selection-header[b-v5djd7pr5u] {
    text-align: center;
    padding: 8px 0 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
    animation-delay: 50ms;
    animation-fill-mode: both;
}

.selection-title[b-v5djd7pr5u] {
    font-weight: 600;
    margin-bottom: 4px;
}

/* Cards container */
.selection-cards[b-v5djd7pr5u] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Selection card styling with premium surface gradient */
[b-v5djd7pr5u] .selection-card {
    cursor: pointer;
    border-radius: 12px;
    background: var(--gradient-surface);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-premium-sm);
    transition: all var(--duration-normal) var(--spring-smooth);
    position: relative;
    overflow: hidden;
}

/* Staggered animation for cards */
[b-v5djd7pr5u] .selection-card:nth-child(1) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 100ms; animation-fill-mode: both; }
[b-v5djd7pr5u] .selection-card:nth-child(2) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 150ms; animation-fill-mode: both; }
[b-v5djd7pr5u] .selection-card:nth-child(3) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 200ms; animation-fill-mode: both; }
[b-v5djd7pr5u] .selection-card:nth-child(4) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 250ms; animation-fill-mode: both; }
[b-v5djd7pr5u] .selection-card:nth-child(5) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 300ms; animation-fill-mode: both; }
[b-v5djd7pr5u] .selection-card:nth-child(6) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 350ms; animation-fill-mode: both; }

/* Hover state - elevated shadow and border tint */
[b-v5djd7pr5u] .selection-card:hover {
    box-shadow: var(--shadow-premium-md);
    border-color: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Active/pressed state with spring bounce */
[b-v5djd7pr5u] .selection-card:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-premium-sm);
}

/* Selected card with primary border glow and bounce animation */
[b-v5djd7pr5u] .selection-card.selected {
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15), var(--shadow-premium-md);
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
    animation: pop-in var(--duration-normal) var(--spring-bounce);
}

/* Selected card checkmark indicator */
[b-v5djd7pr5u] .selection-card.selected::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-primary);
    animation: pop-in var(--duration-normal) var(--spring-bounce);
}

[b-v5djd7pr5u] .selection-card.selected::after {
    content: '✓';
    position: absolute;
    top: 14px;
    right: 18px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    animation: pop-in var(--duration-normal) var(--spring-bounce);
    animation-delay: 50ms;
}

[b-v5djd7pr5u] .selection-card-content {
    padding: 16px !important;
}

/* Ensure minimum touch target height */
[b-v5djd7pr5u] .selection-card {
    min-height: 64px;
}

/* Text truncation for descriptions */
.text-truncate-2[b-v5djd7pr5u] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer with back button */
.selection-footer[b-v5djd7pr5u] {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--mud-palette-divider);
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
    animation-delay: 400ms;
    animation-fill-mode: both;
}

/* Desktop: Grid layout for cards */
@media (min-width: 600px) {
    .selection-cards[b-v5djd7pr5u] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .selection-header[b-v5djd7pr5u] {
        padding: 16px 0 24px 0;
    }

    [b-v5djd7pr5u] .selection-card-content {
        padding: 20px !important;
    }
}

@media (min-width: 960px) {
    .selection-cards[b-v5djd7pr5u] {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* _content/Carely.Web/Components/Pages/ProfessionSelection.razor.rz.scp.css */
/* Selection page container */
.selection-page-container[b-9uafwej5zr] {
    padding-top: 16px;
    padding-bottom: var(--bottom-page-clearance); /* Centralized safe area for bottom nav */
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
}

/* Desktop: more top margin */
@media (min-width: 600px) {
    .selection-page-container[b-9uafwej5zr] {
        padding-top: 64px;
    }
}

/* Loading state */
.loading-container[b-9uafwej5zr] {
    min-height: 50vh;
}

/* Main content wrapper */
.selection-content[b-9uafwej5zr] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Header section */
.selection-header[b-9uafwej5zr] {
    text-align: center;
    padding: 8px 0 16px 0;
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
    animation-delay: 50ms;
    animation-fill-mode: both;
}

.selection-title[b-9uafwej5zr] {
    font-weight: 600;
    margin-bottom: 4px;
}

/* Cards container */
.selection-cards[b-9uafwej5zr] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Selection card styling with premium surface gradient */
[b-9uafwej5zr] .selection-card {
    cursor: pointer;
    border-radius: 12px;
    background: var(--gradient-surface);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-premium-sm);
    transition: all var(--duration-normal) var(--spring-smooth);
    position: relative;
    overflow: hidden;
}

/* Staggered animation for cards */
[b-9uafwej5zr] .selection-card:nth-child(1) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 100ms; animation-fill-mode: both; }
[b-9uafwej5zr] .selection-card:nth-child(2) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 150ms; animation-fill-mode: both; }
[b-9uafwej5zr] .selection-card:nth-child(3) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 200ms; animation-fill-mode: both; }
[b-9uafwej5zr] .selection-card:nth-child(4) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 250ms; animation-fill-mode: both; }
[b-9uafwej5zr] .selection-card:nth-child(5) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 300ms; animation-fill-mode: both; }
[b-9uafwej5zr] .selection-card:nth-child(6) { animation: fade-up var(--duration-slow) var(--ease-out-expo); animation-delay: 350ms; animation-fill-mode: both; }

/* Hover state - elevated shadow and border tint */
[b-9uafwej5zr] .selection-card:hover {
    box-shadow: var(--shadow-premium-md);
    border-color: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Active/pressed state with spring bounce */
[b-9uafwej5zr] .selection-card:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-premium-sm);
}

/* Selected card with primary border glow and bounce animation */
[b-9uafwej5zr] .selection-card.selected {
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15), var(--shadow-premium-md);
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
    animation: pop-in var(--duration-normal) var(--spring-bounce);
}

/* Selected card checkmark indicator */
[b-9uafwej5zr] .selection-card.selected::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-primary);
    animation: pop-in var(--duration-normal) var(--spring-bounce);
}

[b-9uafwej5zr] .selection-card.selected::after {
    content: '✓';
    position: absolute;
    top: 14px;
    right: 18px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    animation: pop-in var(--duration-normal) var(--spring-bounce);
    animation-delay: 50ms;
}

[b-9uafwej5zr] .selection-card-content {
    padding: 16px !important;
}

/* Ensure minimum touch target height */
[b-9uafwej5zr] .selection-card {
    min-height: 64px;
}

/* Footer with back button */
.selection-footer[b-9uafwej5zr] {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--mud-palette-divider);
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
    animation-delay: 400ms;
    animation-fill-mode: both;
}

/* Desktop: Grid layout for cards */
@media (min-width: 600px) {
    .selection-cards[b-9uafwej5zr] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .selection-header[b-9uafwej5zr] {
        padding: 16px 0 24px 0;
    }

    [b-9uafwej5zr] .selection-card-content {
        padding: 20px !important;
    }
}

@media (min-width: 960px) {
    .selection-cards[b-9uafwej5zr] {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* _content/Carely.Web/Components/Pages/Record.razor.rz.scp.css */
/* Fixed-height wrapper so toggling between button and input doesn't shift layout */
.session-name-container[b-ihvavzh2cl] {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Strip margins and underline from the edit text field */
[b-ihvavzh2cl] .session-name-input .mud-input-control {
    margin-top: 0;
    margin-bottom: 0;
}

[b-ihvavzh2cl] .session-name-input .mud-input-control-input-container {
    padding-top: 0;
    padding-bottom: 0;
}

[b-ihvavzh2cl] .session-name-input .mud-input {
    font-size: 0.875rem;
    padding-left: 8px;
}

[b-ihvavzh2cl] .session-name-input .mud-input::before,
[b-ihvavzh2cl] .session-name-input .mud-input::after {
    display: none;
}

[b-ihvavzh2cl] .session-name-input input {
    text-align: right;
    padding: 4px 8px !important;
    height: 36px;
    box-sizing: border-box;
}

[b-ihvavzh2cl] .session-name-input .mud-input-slot {
    padding-right: 8px !important;
}

[b-ihvavzh2cl] .session-name-save {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-left: 2px;
}

.journal-content[b-ihvavzh2cl] {
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.journal-content strong[b-ihvavzh2cl] {
    font-weight: 600;
    color: #1976d2;
}

.journal-content p[b-ihvavzh2cl] {
    margin: 0.5rem 0;
}

/* ==========================================
   Header Settings - Noteless style
   ========================================== */

.header-settings[b-ihvavzh2cl] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding: 0;
}
/*
.setting-row {
    display: flex;
    align-items: center;
    gap: 8px;
}*/

[b-ihvavzh2cl] .setting-icon {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1;
}

:global(.mud-theme-dark)[b-ihvavzh2cl]  .setting-icon {
    color: #64748b;
}

.object-right[b-ihvavzh2cl] {
    text-align: right;
}

[b-ihvavzh2cl] .select-group .mud-list-item-icon   { display: none; }
[b-ihvavzh2cl] .select-group .mud-list-item-text p { color: var(--mud-palette-text-primary);
    font-weight: bold; }

.select-group[b-ihvavzh2cl] {
    font-weight: bold !important;
    color: var(--mud-palette-text-secondary) !important;
}

/* EasyMDE — let editor grow with content instead of internal scrollbar */
[b-ihvavzh2cl] .EasyMDEContainer .CodeMirror {
    height: auto !important;
}

[b-ihvavzh2cl] .CodeMirror-scroll {
    overflow: visible !important;
    min-height: 0 !important;
}
/* _content/Carely.Web/Components/Pages/Record2.razor.rz.scp.css */
/* _content/Carely.Web/Components/Pages/RecordComponents/AudioRecordingSection.razor.rz.scp.css */
/* ==========================================
   Setting Row - Noteless-style label/control
   ========================================== */

.settings-container[b-gt786jtyjf] {
    width: 100%;
    margin-top: auto;
}

.setting-row[b-gt786jtyjf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 12px 0;
}

.setting-label[b-gt786jtyjf] {
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    white-space: nowrap;
}

.setting-control[b-gt786jtyjf] {
    min-width: 0;
    flex-shrink: 1;
    width: 220px;
}

.mic-select[b-gt786jtyjf],
.interaction-type-select[b-gt786jtyjf] {
    width: 220px;
}

.mic-select[b-gt786jtyjf]  .mud-input,
.interaction-type-select[b-gt786jtyjf]  .mud-input {
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    padding: 4px 8px;
}

.mic-select[b-gt786jtyjf]  .mud-input-underline::before,
.mic-select[b-gt786jtyjf]  .mud-input-underline::after,
.interaction-type-select[b-gt786jtyjf]  .mud-input-underline::before,
.interaction-type-select[b-gt786jtyjf]  .mud-input-underline::after {
    display: none;
}

:global(.mud-theme-dark) .setting-label[b-gt786jtyjf] {
    color: #cbd5e1;
}

/* ==========================================
   Audio Recording Section Layout
   ========================================== */

.audio-recording-section[b-gt786jtyjf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding-bottom: 0;
}

.audio-recording-section.mobile[b-gt786jtyjf] {
    padding: 0;
    padding-bottom: 0;
}

.audio-recording-section.desktop[b-gt786jtyjf] {
    padding: 1rem;
}

.recording-status-container[b-gt786jtyjf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.status-text[b-gt786jtyjf] {
    color: var(--color-text-secondary, #64748b);
    font-size: 0.875rem;
}

.error-alert[b-gt786jtyjf] {
    max-width: 24rem;
    margin: 1rem auto;
}

.recording-content[b-gt786jtyjf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
    min-height: 0;
}

/* State containers */
.idle-state[b-gt786jtyjf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
    justify-content: center;
}

.recording-state[b-gt786jtyjf],
.transcribing-state[b-gt786jtyjf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
}

/* Recording header with title and subtitle */
.recording-header[b-gt786jtyjf] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.recording-title[b-gt786jtyjf] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary, #1e293b);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
}

.recording-subtitle[b-gt786jtyjf] {
    font-size: 0.875rem;
    color: var(--color-text-tertiary, #64748b);
    margin: 0;
}

/* ==========================================
   Recording Indicator (red dot + label)
   ========================================== */

.recording-indicator[b-gt786jtyjf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.recording-dot[b-gt786jtyjf] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ef4444;
    animation: pulse-dot-b-gt786jtyjf 1.5s ease-in-out infinite;
}

@keyframes pulse-dot-b-gt786jtyjf {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.recording-label[b-gt786jtyjf] {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ef4444;
}

/* ==========================================
   Timer Display
   ========================================== */

.timer-display[b-gt786jtyjf] {
    font-size: 3rem;
    font-weight: 300;
    font-family: 'Inter', monospace;
    letter-spacing: 0.1em;
    color: var(--color-text-primary, #1e293b);
    margin: 0;
}

:global(.mud-theme-dark) .timer-display[b-gt786jtyjf] {
    color: #f1f5f9;
}

/* ==========================================
   Waveform Visualization
   ========================================== */

.waveform-container[b-gt786jtyjf] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 64px;
    margin-top: 2rem;
}

.waveform-bar[b-gt786jtyjf] {
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(to top, rgba(6, 182, 212, 0.5), #14b8a6);
    animation: waveform-b-gt786jtyjf 0.5s ease-in-out infinite alternate;
}

@keyframes waveform-b-gt786jtyjf {
    0% { height: 20%; }
    100% { height: 100%; }
}

/* ==========================================
   Language Badge
   ========================================== */

.language-badge[b-gt786jtyjf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-top: 1.5rem;
    border-radius: 9999px;
    background: var(--color-surface, #ffffff);
    border: 1px solid var(--color-border, #e5e7eb);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.language-badge-flag[b-gt786jtyjf] {
    width: 20px;
    object-fit: cover;
    border-radius: 2px;
}

.language-badge-text[b-gt786jtyjf] {
    font-size: 0.875rem;
    color: var(--color-text-secondary, #475569);
}

:global(.mud-theme-dark) .language-badge[b-gt786jtyjf] {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(51, 65, 85, 0.5);
}

:global(.mud-theme-dark) .language-badge-text[b-gt786jtyjf] {
    color: #94a3b8;
}

/* ==========================================
   Transcribing Spinner
   ========================================== */

.transcribing-spinner[b-gt786jtyjf] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--color-border, #e5e7eb);
    border-top-color: #06b6d4;
    animation: spin-b-gt786jtyjf 1s linear infinite;
    margin-bottom: 2rem;
}

:global(.mud-theme-dark) .transcribing-spinner[b-gt786jtyjf] {
    border-color: rgba(51, 65, 85, 0.5);
    border-top-color: #22d3ee;
}

@keyframes spin-b-gt786jtyjf {
    to { transform: rotate(360deg); }
}

/* ==========================================
   Animations
   ========================================== */

.animate-fade-in[b-gt786jtyjf] {
    animation: fadeIn-b-gt786jtyjf 0.4s ease-out;
}

@keyframes fadeIn-b-gt786jtyjf {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark mode support */
:global(.mud-theme-dark) .recording-title[b-gt786jtyjf] {
    color: #f1f5f9;
}

:global(.mud-theme-dark) .recording-subtitle[b-gt786jtyjf] {
    color: #94a3b8;
}

:global(.mud-theme-dark) .status-text[b-gt786jtyjf] {
    color: #94a3b8;
}

/* ==========================================
   Premium Hero Record Button Styles
   ========================================== */

/* Container for the button and pulse rings */
.hero-record-button-container[b-gt786jtyjf] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Extra space for pulse rings */
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.hero-record-button-container--mobile[b-gt786jtyjf] {
    padding: 40px;
}

/* The main record button */
.hero-record-button[b-gt786jtyjf] {
    position: relative;
    z-index: 2;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
    /* Desktop size */
    width: 80px;
    height: 80px;
    /* Idle state - cyan/teal gradient */
    background: linear-gradient(145deg, #06b6d4 0%, #14b8a6 100%);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.15);
    /* Performance optimization for frequent animations */
    will-change: transform, box-shadow;
}

/* Mobile size - larger touch target */
.hero-record-button--mobile[b-gt786jtyjf] {
    width: 154px;
    height: 154px;
}

/* Mic icon inside button */
.mic-icon[b-gt786jtyjf] {
    width: 48px;
    height: 48px;
    fill: white;
}

.hero-record-button--mobile .mic-icon[b-gt786jtyjf] {
    width: 48px;
    height: 48px;
}

/* Stop icon (white square) */
.stop-icon[b-gt786jtyjf] {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
}

.hero-record-button--mobile .stop-icon[b-gt786jtyjf] {
    width: 40px;
    height: 40px;
}

/* Idle state styling (explicit for clarity) */
.hero-record-button--idle[b-gt786jtyjf] {
    background: linear-gradient(145deg, #06b6d4 0%, #14b8a6 100%);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Recording state - red gradient */
.hero-record-button--recording[b-gt786jtyjf] {
    background: linear-gradient(145deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Press/active state feedback */
.hero-record-button:active:not(:disabled)[b-gt786jtyjf] {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Hover state (desktop) */
.hero-record-button:hover:not(:disabled):not(:active)[b-gt786jtyjf] {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(6, 182, 212, 0.5),
                0 8px 16px rgba(0, 0, 0, 0.18);
}

.hero-record-button--recording:hover:not(:disabled):not(:active)[b-gt786jtyjf] {
    box-shadow: 0 12px 36px rgba(239, 68, 68, 0.5),
                0 8px 16px rgba(0, 0, 0, 0.18);
}

/* Focus state for accessibility */
.hero-record-button:focus-visible[b-gt786jtyjf] {
    outline: 3px solid rgba(6, 182, 212, 0.5);
    outline-offset: 4px;
}

/* Disabled state */
.hero-record-button:disabled[b-gt786jtyjf] {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   Pulse Ring Animations (Recording State)
   ========================================== */

.pulse-ring[b-gt786jtyjf] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(6, 182, 212, 0.3);
    pointer-events: none;
    z-index: 1;
    /* Performance optimization for continuous animation */
    will-change: transform, opacity;
}

/* Desktop ring sizes */
.pulse-ring-1[b-gt786jtyjf] {
    width: 100px;
    height: 100px;
    animation: pulse-ring-b-gt786jtyjf 2s ease-out infinite;
}

.pulse-ring-2[b-gt786jtyjf] {
    width: 140px;
    height: 140px;
    animation: pulse-ring-b-gt786jtyjf 2s ease-out infinite 0.3s;
}

.pulse-ring-3[b-gt786jtyjf] {
    width: 180px;
    height: 180px;
    animation: pulse-ring-b-gt786jtyjf 2s ease-out infinite 0.6s;
}

/* Mobile ring sizes - larger to match 128px button */
.hero-record-button-container--mobile .pulse-ring-1[b-gt786jtyjf] {
    width: 168px;
    height: 168px;
}

.hero-record-button-container--mobile .pulse-ring-2[b-gt786jtyjf] {
    width: 208px;
    height: 208px;
}

.hero-record-button-container--mobile .pulse-ring-3[b-gt786jtyjf] {
    width: 248px;
    height: 248px;
}

/* Pulse ring keyframe animation */
@keyframes pulse-ring-b-gt786jtyjf {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* ==========================================
   Mode Toggle Button Group
   ========================================== */

.mode-toggle-group[b-gt786jtyjf] {
    margin-bottom: 0.75rem;
}

[b-gt786jtyjf] .mode-toggle-btn {
    min-width: 140px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0;
    padding: 14px 28px;
    border-radius: 0;
}

[b-gt786jtyjf] .mode-toggle-btn:first-child {
    border-radius: 12px 0 0 12px;
}

[b-gt786jtyjf] .mode-toggle-btn:last-child {
    border-radius: 0 12px 12px 0;
}

/* ==========================================
   Reduced Motion Support
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-record-button[b-gt786jtyjf] {
        transition: none;
    }

    .hero-record-button--recording[b-gt786jtyjf] {
        animation: none;
    }

    .pulse-ring[b-gt786jtyjf] {
        animation: none;
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.3);
    }

    .hero-record-button:active:not(:disabled)[b-gt786jtyjf] {
        transform: scale(0.98);
    }
}

/* ==========================================
   Legacy recording-pulse class (kept for compatibility)
   ========================================== */

.recording-pulse[b-gt786jtyjf] {
    animation: pulse-b-gt786jtyjf 1.5s ease-in-out infinite;
}

@keyframes pulse-b-gt786jtyjf {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* ==========================================
   Additional Animation for Recording State
   ========================================== */

.recording-header[b-gt786jtyjf] {
    animation: fade-up-b-gt786jtyjf 0.3s ease-out;
}

@keyframes fade-up-b-gt786jtyjf {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/Carely.Web/Components/Pages/RecordComponents/Mobile/MobileJournalStep.razor.rz.scp.css */
.mobile-journal-step[b-ytu5hrsyca] {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    min-height: 0;
}

/* ==========================================
   BACK BUTTON — fixed top right
   ========================================== */

.journal-back-button[b-ytu5hrsyca] {
    position: fixed;
    top: 0;
    right: 8px;
    z-index: 200;
    height: 60px;
    display: flex;
    align-items: center;
}

/* ==========================================
   JOURNAL NOTE HEADER
   ========================================== */

.journal-note-header[b-ytu5hrsyca] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 8px;
}

.journal-note-header-icon[b-ytu5hrsyca] {
    display: flex;
}

/* ==========================================
   PROCESSING STATE — full page skeleton
   ========================================== */

.processing-state[b-ytu5hrsyca] {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 16px;
    background: transparent;
    transition: opacity 0.3s ease;
}

:global(.mud-theme-dark) .processing-state[b-ytu5hrsyca] {
    background: transparent;
}

.processing-visible[b-ytu5hrsyca] {
    opacity: 1;
    pointer-events: auto;
}

.processing-hidden[b-ytu5hrsyca] {
    opacity: 0;
    pointer-events: none;
}

.processing-header[b-ytu5hrsyca] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.processing-icon[b-ytu5hrsyca] {
    animation: pulse-glow-b-ytu5hrsyca 2s ease-in-out infinite;
    display: flex;
}

@keyframes pulse-glow-b-ytu5hrsyca {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.skeleton-lines[b-ytu5hrsyca] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.skeleton-line[b-ytu5hrsyca] {
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(90deg,
        rgba(0, 0, 0, 0.06) 25%,
        rgba(0, 0, 0, 0.10) 50%,
        rgba(0, 0, 0, 0.06) 75%);
    background-size: 200% 100%;
    animation: shimmer-b-ytu5hrsyca 1.8s ease-in-out infinite;
    filter: blur(2px);
}

.skeleton-line-full[b-ytu5hrsyca] {
    width: 100%;
}

.skeleton-line-long[b-ytu5hrsyca] {
    width: 85%;
}

.skeleton-line-medium[b-ytu5hrsyca] {
    width: 60%;
}

@keyframes shimmer-b-ytu5hrsyca {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

:global(.mud-theme-dark) .skeleton-line[b-ytu5hrsyca] {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.06) 25%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 75%);
    background-size: 200% 100%;
}

@keyframes fade-in-b-ytu5hrsyca {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   JOURNAL BODY — full width, no chrome
   ========================================== */

.journal-body[b-ytu5hrsyca] {
    padding: 0 16px;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

/* Hide the generate button inside JournalEditorSection */
.journal-editor-wrapper[b-ytu5hrsyca]  > .mud-button-filled:first-child {
    display: none !important;
}

/* Hide the entire processing MudPaper inside JournalEditorSection (we show our own) */
.journal-editor-wrapper[b-ytu5hrsyca]  > .mud-paper:has(.mud-progress-circular) {
    display: none !important;
}

/* Strip ALL paper/card styling */
.journal-body[b-ytu5hrsyca]  .mud-paper {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
}

/* Hide the "Journalnotat" heading */
.journal-body[b-ytu5hrsyca]  .mud-typography-h6 {
    display: none !important;
}

/* Hide edit hint */
.journal-body[b-ytu5hrsyca]  .edit-hint {
    display: none !important;
}

/* Hide copy button */
.journal-body[b-ytu5hrsyca]  .mud-button-filled-success {
    display: none !important;
}

/* EasyMDE — full width, no borders, no chrome */
.journal-body[b-ytu5hrsyca]  .EasyMDEContainer {
    border: none !important;
    border-radius: 0 !important;
}

.journal-body[b-ytu5hrsyca]  .EasyMDEContainer .CodeMirror {
    border: none !important;
    background: transparent !important;
    font-size: 15px;
    line-height: 1.75;
    color: var(--mud-palette-text-primary);
    padding: 0;
    height: auto !important;
}

.journal-body[b-ytu5hrsyca]  .CodeMirror-scroll {
    min-height: 0 !important;
    overflow: visible !important;
}

.journal-body[b-ytu5hrsyca]  .CodeMirror-gutters {
    background: transparent !important;
    border: none !important;
}

.journal-body[b-ytu5hrsyca]  .CodeMirror-scrollbar-filler,
.journal-body[b-ytu5hrsyca]  .CodeMirror-gutter-filler {
    background: transparent !important;
}

.journal-body[b-ytu5hrsyca]  .editor-preview {
    background: transparent !important;
    padding: 0 !important;
}

.journal-body[b-ytu5hrsyca]  .editor-toolbar {
    display: none !important;
}

.journal-body[b-ytu5hrsyca]  .editor-statusbar {
    display: none !important;
}

/* Quill editor overrides */
.journal-body[b-ytu5hrsyca]  .ql-container {
    border: none !important;
    font-size: 15px;
}

.journal-body[b-ytu5hrsyca]  .ql-editor {
    padding: 0;
    line-height: 1.75;
}

.journal-body[b-ytu5hrsyca]  .ql-toolbar {
    display: none !important;
}

/* Markdown textarea fallback */
.journal-body[b-ytu5hrsyca]  #markdown-journal-editor {
    min-height: auto !important;
    border: none !important;
    background: transparent !important;
    width: 100% !important;
}
/* _content/Carely.Web/Components/Pages/RecordComponents/Mobile/MobileRecordingStep.razor.rz.scp.css */
.mobile-record-step[b-z7l9wmqmcz] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
    overflow: hidden;
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
}

.record-content[b-z7l9wmqmcz] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 0;
}

.record-content-compact[b-z7l9wmqmcz] {
    justify-content: center;
}

.record-content[b-z7l9wmqmcz]  .mud-paper {
    background: transparent;
    box-shadow: none;
    width: 100%;
    max-width: 300px;
}

.transcribing-indicator[b-z7l9wmqmcz] {
    padding: 16px;
    text-align: center;
    animation: fade-up var(--duration-normal) var(--ease-out-expo);
}

.processing-indicator[b-z7l9wmqmcz] {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fade-up var(--duration-normal) var(--ease-out-expo);
}

/* Continue/Generate Note button container */
.continue-button-container[b-z7l9wmqmcz] {
    padding: 8px 0 24px;
}

/* Primary action button - premium gradient style */
.continue-button-container[b-z7l9wmqmcz]  .mud-button-filled.mud-button-primary {
    background: var(--gradient-primary) !important;
    box-shadow: var(--shadow-primary) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 12px 32px !important;
    min-height: 52px;
    transition: transform var(--duration-fast) var(--spring-bounce),
                box-shadow var(--duration-normal) var(--spring-smooth) !important;
}

.continue-button-container[b-z7l9wmqmcz]  .mud-button-filled.mud-button-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(6, 182, 212,0.45), 0 6px 12px rgba(0,0,0,0.15) !important;
}

.continue-button-container[b-z7l9wmqmcz]  .mud-button-filled.mud-button-primary:active {
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(6, 182, 212,0.25), 0 2px 4px rgba(0,0,0,0.1) !important;
}

/* ==========================================
   Mobile Settings - tappable rows
   ========================================== */

.mobile-settings[b-z7l9wmqmcz] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
    animation: fade-up var(--duration-normal, 0.3s) var(--ease-out-expo, ease-out);
}

.setting-row-button[b-z7l9wmqmcz] {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 12px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background var(--duration-fast) ease;
}

.setting-row-button:active:not(:disabled)[b-z7l9wmqmcz] {
    background: rgba(0, 0, 0, 0.04);
}

.setting-row-button:disabled[b-z7l9wmqmcz] {
    opacity: 0.45;
    cursor: default;
}

.setting-label[b-z7l9wmqmcz] {
    font-size: 13px;
    font-weight: 500;
    color: #64748B;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 72px;
    text-align: left;
}

.setting-value[b-z7l9wmqmcz] {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--mud-palette-text-primary);
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.setting-chevron[b-z7l9wmqmcz] {
    flex-shrink: 0;
    color: #94a3b8;
}

:global(.mud-theme-dark) .setting-label[b-z7l9wmqmcz] {
    color: #94a3b8;
}

:global(.mud-theme-dark) .setting-row-button:active:not(:disabled)[b-z7l9wmqmcz] {
    background: rgba(255, 255, 255, 0.06);
}

/* ==========================================
   Bottom Sheet Picker
   ========================================== */

.picker-overlay[b-z7l9wmqmcz] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1200;
    display: flex;
    align-items: flex-end;
    animation: fade-in-b-z7l9wmqmcz 0.2s ease;
}

.picker-sheet[b-z7l9wmqmcz] {
    width: 100%;
    background: var(--mud-palette-surface, #fff);
    border-radius: 20px 20px 0 0;
    max-height: 60vh;
    display: flex;
    flex-direction: column;
    animation: slide-up-b-z7l9wmqmcz 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    padding-bottom: env(safe-area-inset-bottom, 16px);
}

.picker-sheet-header[b-z7l9wmqmcz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.picker-sheet-list[b-z7l9wmqmcz] {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
}

.picker-option[b-z7l9wmqmcz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--mud-palette-text-primary);
    -webkit-tap-highlight-color: transparent;
    text-align: left;
}

.picker-option:active[b-z7l9wmqmcz] {
    background: rgba(0, 0, 0, 0.04);
}

.picker-option-selected[b-z7l9wmqmcz] {
    color: var(--mud-palette-primary, #06b6d4);
    font-weight: 600;
}

:global(.mud-theme-dark) .picker-sheet[b-z7l9wmqmcz] {
    background: var(--mud-palette-surface, #1e293b);
}

:global(.mud-theme-dark) .picker-sheet-header[b-z7l9wmqmcz] {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

:global(.mud-theme-dark) .picker-option:active[b-z7l9wmqmcz] {
    background: rgba(255, 255, 255, 0.06);
}

@keyframes slide-up-b-z7l9wmqmcz {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes fade-in-b-z7l9wmqmcz {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================
   Landscape phone — allow scrolling for short viewports
   ========================================== */

@media (max-height: 500px) and (orientation: landscape) {
    .mobile-record-step[b-z7l9wmqmcz] {
        overflow-y: auto;
    }

    .record-content[b-z7l9wmqmcz] {
        flex: 0 0 auto;
    }
}

/* Recording controls area styling */
.record-content[b-z7l9wmqmcz]  .recording-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Status text animations */
.record-content[b-z7l9wmqmcz]  .mud-typography {
    transition: opacity var(--duration-normal) ease;
}

/* Progress indicator styling */
.record-content[b-z7l9wmqmcz]  .mud-progress-circular {
    filter: drop-shadow(0 2px 4px rgba(6, 182, 212, 0.2));
}
/* _content/Carely.Web/Components/Pages/RecordComponents/Mobile/MobileRecordLayout.razor.rz.scp.css */
.mobile-record-layout[b-zp0ts4gvvf] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    background: transparent;
    overflow: hidden;
}

.mobile-header[b-zp0ts4gvvf] {
    display: none; /* Hidden on mobile for cleaner recording UI */
    padding: 12px 16px;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-content[b-zp0ts4gvvf] {
    display: flex;
    align-items: center;
}

.step-content[b-zp0ts4gvvf] {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0; /* Allow flex child to shrink below content size */
    padding-bottom: env(safe-area-inset-bottom, 0px); /* Account for safe area on notched devices */
}

/* Landscape phone — allow scrolling */
@media (max-height: 500px) and (orientation: landscape) {
    .step-content[b-zp0ts4gvvf] {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}
/* _content/Carely.Web/Components/Pages/RecordComponents/Mobile/MobileStepIndicator.razor.rz.scp.css */
.mobile-step-indicator[b-1qvaeehhcj] {
    display: none; /* Hidden on mobile for cleaner recording UI */
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step[b-1qvaeehhcj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all var(--duration-normal) var(--spring-smooth);
    border-radius: 12px;
    min-width: 70px;
    position: relative;
}

.step:disabled[b-1qvaeehhcj] {
    cursor: not-allowed;
    opacity: 0.4;
}

.step:not(:disabled):hover[b-1qvaeehhcj] {
    background: rgba(6, 182, 212, 0.08);
}

.step:not(:disabled):active[b-1qvaeehhcj] {
    transform: scale(var(--scale-pressed));
}

.step-icon[b-1qvaeehhcj] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E2E8F0;
    color: #64748B;
    transition: all var(--duration-normal) var(--spring-smooth);
    position: relative;
}

/* Active step with pulsing ring animation */
.step.active .step-icon[b-1qvaeehhcj] {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

/* Pulsing ring for active step */
.step.active .step-icon[b-1qvaeehhcj]::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(6, 182, 212, 0.4);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

/* Second pulse ring for more depth */
.step.active .step-icon[b-1qvaeehhcj]::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
    animation-delay: 0.5s;
}

/* Completed step with pop-in animation */
.step.completed .step-icon[b-1qvaeehhcj] {
    background: var(--gradient-success);
    color: white;
    box-shadow: var(--shadow-success);
    animation: pop-in var(--duration-slow) var(--spring-bounce);
}

/* Subtle checkmark bounce when completed */
.step.completed .step-icon[b-1qvaeehhcj]  .mud-icon-root {
    animation: pop-in var(--duration-normal) var(--spring-bounce);
}

.step-label[b-1qvaeehhcj] {
    font-size: 0.7rem;
    font-weight: 500;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all var(--duration-normal) ease;
}

.step.active .step-label[b-1qvaeehhcj] {
    color: #06b6d4;
    font-weight: 600;
}

.step.completed .step-label[b-1qvaeehhcj] {
    color: #16A34A;
    font-weight: 600;
}

/* Step connector with animated fill */
.step-connector[b-1qvaeehhcj] {
    width: 32px;
    height: 3px;
    background: #E2E8F0;
    margin: 0 4px;
    margin-bottom: 20px;
    border-radius: 2px;
    transition: background var(--duration-slow) var(--spring-smooth);
    position: relative;
    overflow: hidden;
}

/* Animated fill for completed connector */
.step-connector.completed[b-1qvaeehhcj] {
    background: linear-gradient(90deg, #16A34A 0%, #22c55e 100%);
    box-shadow: 0 0 8px rgba(22, 163, 74, 0.3);
}

/* Connector fill animation overlay */
.step-connector.completed[b-1qvaeehhcj]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    animation: connector-fill 0.6s var(--ease-out-expo);
    background-size: 200% 100%;
}

/* In-progress connector (between active and next step) */
.step-connector.in-progress[b-1qvaeehhcj] {
    background: linear-gradient(90deg, #06b6d4 0%, #E2E8F0 50%);
    background-size: 200% 100%;
}
/* _content/Carely.Web/Components/Pages/RecordComponents/TranscriptionSection.razor.rz.scp.css */
/* ==========================================
   Live Transcript Box
   ========================================== */

.transcript-box[b-4e6do9rkum] {
    width: 100%;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 8px;
    background: var(--color-surface, #f9fafb);
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    margin-top: 0.75rem;
}

[b-4e6do9rkum] .mud-theme-dark .transcript-box,
:global(.mud-theme-dark) .transcript-box[b-4e6do9rkum] {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(51, 65, 85, 0.5);
}

/* ==========================================
   Speaker Segments
   ========================================== */

.speaker-segment[b-4e6do9rkum] {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.4rem;
}

.speaker-segment.partial[b-4e6do9rkum] {
    color: #6b7280;
    font-style: italic;
}

.speaker-label[b-4e6do9rkum] {
    display: inline-block;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.speaker-text[b-4e6do9rkum] {
    flex: 1;
}

/* Speaker colour palette */
.speaker-label.speaker-person-1[b-4e6do9rkum]  { background: #3b82f6; }
.speaker-label.speaker-person-2[b-4e6do9rkum]  { background: #10b981; }
.speaker-label.speaker-person-3[b-4e6do9rkum]  { background: #f59e0b; }
.speaker-label.speaker-person-4[b-4e6do9rkum]  { background: #8b5cf6; }
.speaker-label.speaker-person-5[b-4e6do9rkum]  { background: #ef4444; }
.speaker-label.speaker-person-6[b-4e6do9rkum]  { background: #ec4899; }
.speaker-label.speaker-person-7[b-4e6do9rkum]  { background: #14b8a6; }
.speaker-label.speaker-person-8[b-4e6do9rkum]  { background: #f97316; }
.speaker-label.speaker-person-9[b-4e6do9rkum]  { background: #6366f1; }
.speaker-label.speaker-person-10[b-4e6do9rkum] { background: #84cc16; }
.speaker-label.speaker-person-11[b-4e6do9rkum] { background: #e11d48; }
.speaker-label.speaker-person-12[b-4e6do9rkum] { background: #0891b2; }
.speaker-label.speaker-person-13[b-4e6do9rkum] { background: #a855f7; }
.speaker-label.speaker-person-14[b-4e6do9rkum] { background: #ea580c; }
.speaker-label.speaker-person-15[b-4e6do9rkum] { background: #059669; }
.speaker-label.speaker-person-16[b-4e6do9rkum] { background: #dc2626; }
.speaker-label.speaker-person-17[b-4e6do9rkum] { background: #2563eb; }
.speaker-label.speaker-person-18[b-4e6do9rkum] { background: #d97706; }
.speaker-label.speaker-person-19[b-4e6do9rkum] { background: #7c3aed; }
.speaker-label.speaker-person-20[b-4e6do9rkum] { background: #0d9488; }
.speaker-label.speaker-person-21[b-4e6do9rkum] { background: #be185d; }
.speaker-label.speaker-person-22[b-4e6do9rkum] { background: #65a30d; }
.speaker-label.speaker-person-23[b-4e6do9rkum] { background: #0284c7; }
.speaker-label.speaker-person-24[b-4e6do9rkum] { background: #c026d3; }
.speaker-label.speaker-person-25[b-4e6do9rkum] { background: #b45309; }
.speaker-label.speaker-person-26[b-4e6do9rkum] { background: #4f46e5; }
.speaker-label.speaker-person-27[b-4e6do9rkum] { background: #16a34a; }
.speaker-label.speaker-person-28[b-4e6do9rkum] { background: #e11d48; }
.speaker-label.speaker-person-29[b-4e6do9rkum] { background: #0e7490; }
.speaker-label.speaker-person-30[b-4e6do9rkum] { background: #9333ea; }
.speaker-label.speaker-person-31[b-4e6do9rkum] { background: #c2410c; }
.speaker-label.speaker-person-32[b-4e6do9rkum] { background: #047857; }
.speaker-label.speaker-person-33[b-4e6do9rkum] { background: #db2777; }
.speaker-label.speaker-person-34[b-4e6do9rkum] { background: #1d4ed8; }
.speaker-label.speaker-person-35[b-4e6do9rkum] { background: #a16207; }
.speaker-label.speaker-person-36[b-4e6do9rkum] { background: #6d28d9; }
.speaker-label.speaker-person-37[b-4e6do9rkum] { background: #0f766e; }
.speaker-label.speaker-person-38[b-4e6do9rkum] { background: #9f1239; }
.speaker-label.speaker-person-39[b-4e6do9rkum] { background: #4d7c0f; }
.speaker-label.speaker-person-40[b-4e6do9rkum] { background: #1e40af; }
.speaker-label.speaker-person-41[b-4e6do9rkum] { background: #a21caf; }
.speaker-label.speaker-person-42[b-4e6do9rkum] { background: #92400e; }
.speaker-label.speaker-person-43[b-4e6do9rkum] { background: #3730a3; }
.speaker-label.speaker-person-44[b-4e6do9rkum] { background: #15803d; }
.speaker-label.speaker-person-45[b-4e6do9rkum] { background: #b91c1c; }
.speaker-label.speaker-person-46[b-4e6do9rkum] { background: #155e75; }
.speaker-label.speaker-person-47[b-4e6do9rkum] { background: #86198f; }
.speaker-label.speaker-person-48[b-4e6do9rkum] { background: #9a3412; }
.speaker-label.speaker-person-49[b-4e6do9rkum] { background: #1e3a8a; }
.speaker-label.speaker-person-50[b-4e6do9rkum] { background: #166534; }
.speaker-label.speaker-uu[b-4e6do9rkum] { background: #9ca3af; }
/* _content/Carely.Web/Components/Pages/Speechmatics/Recorder.razor.rz.scp.css */
/* ==========================================
   Audio Recording Section Layout
   ========================================== */

.audio-recording-section[b-rf1vqhm9k5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    min-height: 100%;
}

.audio-recording-section.mobile[b-rf1vqhm9k5] {
    padding: 0;
    justify-content: flex-start;
    min-height: 0;
}

.audio-recording-section.mobile .recording-content[b-rf1vqhm9k5] {
    justify-content: flex-start;
    flex: 0;
}

.audio-recording-section.mobile .recording-header[b-rf1vqhm9k5] {
    margin-bottom: 1rem;
}

.audio-recording-section.desktop[b-rf1vqhm9k5] {
    padding: 1rem;
}

.recording-status-container[b-rf1vqhm9k5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.status-text[b-rf1vqhm9k5] {
    color: var(--color-text-secondary, #64748b);
    font-size: 0.875rem;
}

.error-alert[b-rf1vqhm9k5] {
    max-width: 24rem;
    margin: 1rem auto;
}

.recording-content[b-rf1vqhm9k5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
}

/* State containers */
.idle-state[b-rf1vqhm9k5],
.recording-state[b-rf1vqhm9k5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.recording-state[b-rf1vqhm9k5] {
    padding-bottom: 2rem;
}

/* Recording header with title and subtitle */
.recording-header[b-rf1vqhm9k5] {
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fade-up-b-rf1vqhm9k5 0.3s ease-out;
}

.recording-title[b-rf1vqhm9k5] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary, #1e293b);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
}

.recording-subtitle[b-rf1vqhm9k5] {
    font-size: 0.875rem;
    color: var(--color-text-tertiary, #64748b);
    margin: 0;
}

/* ==========================================
   Recording Indicator (red dot + label)
   ========================================== */

.recording-indicator[b-rf1vqhm9k5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.recording-dot[b-rf1vqhm9k5] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ef4444;
    animation: pulse-dot-b-rf1vqhm9k5 1.5s ease-in-out infinite;
}

@keyframes pulse-dot-b-rf1vqhm9k5 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.recording-label[b-rf1vqhm9k5] {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ef4444;
}

/* ==========================================
   Timer Display
   ========================================== */

.timer-display[b-rf1vqhm9k5] {
    font-size: 3rem;
    font-weight: 300;
    font-family: 'Inter', monospace;
    letter-spacing: 0.1em;
    color: var(--color-text-primary, #1e293b);
    margin: 0;
}

:global(.mud-theme-dark) .timer-display[b-rf1vqhm9k5] {
    color: #f1f5f9;
}

/* ==========================================
   Language Badge
   ========================================== */

.language-badge[b-rf1vqhm9k5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-top: 1.5rem;
    border-radius: 9999px;
    background: var(--color-surface, #ffffff);
    border: 1px solid var(--color-border, #e5e7eb);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.language-badge-flag[b-rf1vqhm9k5] {
    width: 20px;
    object-fit: cover;
    border-radius: 2px;
}

.language-badge-text[b-rf1vqhm9k5] {
    font-size: 0.875rem;
    color: var(--color-text-secondary, #475569);
}

:global(.mud-theme-dark) .language-badge[b-rf1vqhm9k5] {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(51, 65, 85, 0.5);
}

:global(.mud-theme-dark) .language-badge-text[b-rf1vqhm9k5] {
    color: #94a3b8;
}

/* ==========================================
   Animations
   ========================================== */

.animate-fade-in[b-rf1vqhm9k5] {
    animation: fadeIn-b-rf1vqhm9k5 0.4s ease-out;
}

@keyframes fadeIn-b-rf1vqhm9k5 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-up-b-rf1vqhm9k5 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark mode support */
:global(.mud-theme-dark) .recording-title[b-rf1vqhm9k5] {
    color: #f1f5f9;
}

:global(.mud-theme-dark) .recording-subtitle[b-rf1vqhm9k5] {
    color: #94a3b8;
}

:global(.mud-theme-dark) .status-text[b-rf1vqhm9k5] {
    color: #94a3b8;
}

/* ==========================================
   Premium Hero Record Button Styles
   ========================================== */

.hero-record-button-container[b-rf1vqhm9k5] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.hero-record-button-container--mobile[b-rf1vqhm9k5] {
    padding: 20px;
}

.hero-record-button-wrapper[b-rf1vqhm9k5] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-record-button[b-rf1vqhm9k5] {
    position: relative;
    z-index: 2;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #06b6d4 0%, #14b8a6 100%);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.15);
    will-change: transform, box-shadow;
}

.hero-record-button--mobile[b-rf1vqhm9k5] {
    width: 128px;
    height: 128px;
}

.mic-icon[b-rf1vqhm9k5] {
    width: 48px;
    height: 48px;
    fill: white;
}

.stop-icon[b-rf1vqhm9k5] {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
}

.hero-record-button--idle[b-rf1vqhm9k5] {
    background: linear-gradient(145deg, #06b6d4 0%, #14b8a6 100%);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-record-button--recording[b-rf1vqhm9k5] {
    background: linear-gradient(145deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-record-button:active:not(:disabled)[b-rf1vqhm9k5] {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.hero-record-button:hover:not(:disabled):not(:active)[b-rf1vqhm9k5] {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(6, 182, 212, 0.5),
                0 8px 16px rgba(0, 0, 0, 0.18);
}

.hero-record-button--recording:hover:not(:disabled):not(:active)[b-rf1vqhm9k5] {
    box-shadow: 0 12px 36px rgba(239, 68, 68, 0.5),
                0 8px 16px rgba(0, 0, 0, 0.18);
}

.hero-record-button:focus-visible[b-rf1vqhm9k5] {
    outline: 3px solid rgba(6, 182, 212, 0.5);
    outline-offset: 4px;
}

.hero-record-button:disabled[b-rf1vqhm9k5] {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   Pulse Ring Animations (Recording State)
   ========================================== */

.pulse-ring[b-rf1vqhm9k5] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(6, 182, 212, 0.3);
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
}

.pulse-ring-1[b-rf1vqhm9k5] {
    width: 100px;
    height: 100px;
    animation: pulse-ring-b-rf1vqhm9k5 2s ease-out infinite;
}

.pulse-ring-2[b-rf1vqhm9k5] {
    width: 140px;
    height: 140px;
    animation: pulse-ring-b-rf1vqhm9k5 2s ease-out infinite 0.3s;
}

.pulse-ring-3[b-rf1vqhm9k5] {
    width: 180px;
    height: 180px;
    animation: pulse-ring-b-rf1vqhm9k5 2s ease-out infinite 0.6s;
}

.hero-record-button-container--mobile .pulse-ring-1[b-rf1vqhm9k5] {
    width: 168px;
    height: 168px;
}

.hero-record-button-container--mobile .pulse-ring-2[b-rf1vqhm9k5] {
    width: 208px;
    height: 208px;
}

.hero-record-button-container--mobile .pulse-ring-3[b-rf1vqhm9k5] {
    width: 248px;
    height: 248px;
}

@keyframes pulse-ring-b-rf1vqhm9k5 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* ==========================================
   Reduced Motion Support
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-record-button[b-rf1vqhm9k5] {
        transition: none;
    }

    .pulse-ring[b-rf1vqhm9k5] {
        animation: none;
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.3);
    }

    .hero-record-button:active:not(:disabled)[b-rf1vqhm9k5] {
        transform: scale(0.98);
    }
}

/* ==========================================
   Mode Toggle Button Group
   ========================================== */

.mode-toggle-group[b-rf1vqhm9k5] {
    margin: 12px 0;
}

[b-rf1vqhm9k5] .mode-toggle-btn {
    min-width: 140px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0;
    padding: 14px 28px;
    border-radius: 0;
}

[b-rf1vqhm9k5] .mode-toggle-btn:first-child {
    border-radius: 12px 0 0 12px;
}

[b-rf1vqhm9k5] .mode-toggle-btn:last-child {
    border-radius: 0 12px 12px 0;
}

/* _content/Carely.Web/Components/Shared/Admin/MobileAdminCard.razor.rz.scp.css */
.mobile-admin-card[b-s98vgrrthy] {
    margin-bottom: 8px;
    border-radius: 12px;
}

.mobile-admin-card.deleted[b-s98vgrrthy] {
    opacity: 0.6;
    background-color: var(--mud-palette-action-disabled-background);
}

.mobile-card-header[b-s98vgrrthy] {
    margin-bottom: 8px;
}

.mobile-card-body[b-s98vgrrthy] {
    font-size: 0.875rem;
    color: var(--mud-palette-text-secondary);
}

[b-s98vgrrthy] .mobile-card-body .field-label {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

[b-s98vgrrthy] .mobile-card-body .field-value {
    font-size: 0.875rem;
    color: var(--mud-palette-text-primary);
    margin-bottom: 8px;
}

[b-s98vgrrthy] .mobile-card-body .field-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

[b-s98vgrrthy] .mobile-card-body .field-row:last-child {
    margin-bottom: 0;
}

.mobile-card-actions[b-s98vgrrthy] {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
    border-top: 1px solid var(--mud-palette-divider);
}

[b-s98vgrrthy] .mobile-card-actions .mud-icon-button {
    min-width: 44px;
    min-height: 44px;
}
/* _content/Carely.Web/Components/Shared/LanguageSwitcher.razor.rz.scp.css */
.language-switcher[b-h7vxhjslod] {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.language-switcher[b-h7vxhjslod]  .mud-button-group {
    box-shadow: none !important;
    gap: 2px;
}

.language-switcher[b-h7vxhjslod]  .mud-button-group .mud-button-root {
    margin: 0 !important;
    border: none !important;
    border-radius: 4px !important;
}

.language-switcher[b-h7vxhjslod]  .flag-button {
    min-width: unset;
    padding: 6px 4px;
    border: none !important;
    background-color: transparent;
    transition: all 0.2s ease;
    margin: 0 !important;
}

.language-switcher[b-h7vxhjslod]  .flag-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.language-switcher[b-h7vxhjslod]  .mud-button-filled {
    background-color: var(--mud-palette-primary) !important;
    border-radius: 4px;
}

.language-switcher[b-h7vxhjslod]  .mud-button-filled:hover {
    background-color: var(--mud-palette-primary-darken) !important;
}

.flag-icon[b-h7vxhjslod] {
    width: 24px;
    height: 18px;
    display: inline;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    transform: scale(0.85);
}

.language-switcher[b-h7vxhjslod]  .flag-button:hover .flag-icon {
    opacity: 0.7;
    transform: scale(0.9);
}

.language-switcher[b-h7vxhjslod]  .mud-button-filled .flag-icon {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: scale(1);
}

[b-h7vxhjslod] .language-dropdown {
    white-space: nowrap;
}


.language-option[b-h7vxhjslod] {
    white-space: nowrap;
}
/* _content/Carely.Web/Components/Shared/RecordingLanguageSelector.razor.rz.scp.css */
/* ==========================================
   SETTING ROW - Noteless-style label/control
   ========================================== */

.setting-row[b-2udu15bk6p] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 12px 0;
}

.setting-label[b-2udu15bk6p] {
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    white-space: nowrap;
}

.setting-control[b-2udu15bk6p] {
    min-width: 0;
    flex-shrink: 1;
    width: 220px;
}

.lang-select[b-2udu15bk6p] {
    width: 220px;
}

.lang-select[b-2udu15bk6p]  .mud-input {
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    padding: 4px 8px;
}

.lang-select[b-2udu15bk6p]  .mud-input-underline::before,
.lang-select[b-2udu15bk6p]  .mud-input-underline::after {
    display: none;
}

/* ==========================================
   DARK MODE
   ========================================== */

:global(.mud-theme-dark) .setting-label[b-2udu15bk6p] {
    color: #cbd5e1;
}
/* _content/Carely.Web/Components/Shared/Sessions/EditSessionNameDialog.razor.rz.scp.css */
/* _content/Carely.Web/Components/Shared/Sessions/MobileSessionCard.razor.rz.scp.css */
.mobile-session-card[b-vzlui6avfx] {
    cursor: pointer;
    border-radius: 12px;
    min-height: 72px;
    background: var(--gradient-surface);
    box-shadow: var(--shadow-premium-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform var(--duration-micro) var(--spring-bounce),
                box-shadow var(--duration-normal) var(--spring-smooth),
                border-color var(--duration-normal) ease;
    position: relative;
    overflow: hidden;
}

/* Hover state - elevated shadow and border tint */
.mobile-session-card:hover[b-vzlui6avfx] {
    box-shadow: var(--shadow-premium-md);
    border-color: rgba(6, 182, 212, 0.15);
}

/* Active/pressed state */
.mobile-session-card:active[b-vzlui6avfx] {
    transform: scale(0.98);
    box-shadow: var(--shadow-premium-sm);
}

/* Has journal indicator - left accent bar */
.mobile-session-card.has-journal[b-vzlui6avfx]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-success);
    border-radius: 2px 0 0 2px;
}

/* Card with journal has slightly different background */
.mobile-session-card.has-journal[b-vzlui6avfx] {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    border-color: rgba(22, 163, 74, 0.15);
}

.mobile-session-card.has-journal:hover[b-vzlui6avfx] {
    border-color: rgba(22, 163, 74, 0.25);
    box-shadow: var(--shadow-premium-md), 0 0 0 1px rgba(22, 163, 74, 0.08);
}

.session-name[b-vzlui6avfx] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.unnamed-session[b-vzlui6avfx] {
    font-style: italic;
    text-transform: capitalize;
    color: var(--mud-palette-text-secondary);
}

/* Card content area padding adjustment for accent bar */
.mobile-session-card.has-journal[b-vzlui6avfx]  .mud-card-content {
    padding-left: 20px;
}

[b-vzlui6avfx] .mud-icon-button {
    min-width: 44px;
    min-height: 44px;
    transition: transform var(--duration-micro) var(--spring-bounce),
                background-color var(--duration-fast) ease;
}

[b-vzlui6avfx] .mud-icon-button:hover {
    background-color: rgba(6, 182, 212, 0.08);
}

[b-vzlui6avfx] .mud-icon-button:active {
    transform: scale(0.9);
}

/* Session date/time chip styling */
.mobile-session-card[b-vzlui6avfx]  .mud-chip {
    background: rgba(6, 182, 212, 0.08);
    transition: background-color var(--duration-fast) ease;
}

.mobile-session-card:hover[b-vzlui6avfx]  .mud-chip {
    background: rgba(6, 182, 212, 0.12);
}
/* _content/Carely.Web/Components/Shared/Sessions/RecentSessions.razor.rz.scp.css */
/* ==========================================
   EMPTY STATE
   ========================================== */

.empty-state[b-ll87nw0tg6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    text-align: center;
}

.empty-icon[b-ll87nw0tg6] {
    color: #94a3b8;
    margin-bottom: 8px;
}

.empty-text[b-ll87nw0tg6] {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* ==========================================
   SESSIONS HEADER DIVIDER
   ========================================== */

.sessions-header-divider[b-ll87nw0tg6] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.sessions-header-line[b-ll87nw0tg6] {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.sessions-header-label[b-ll87nw0tg6] {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    white-space: nowrap;
}

:global(.mud-theme-dark) .sessions-header-line[b-ll87nw0tg6] {
    background: linear-gradient(90deg, transparent, #334155, transparent);
}

:global(.mud-theme-dark) .sessions-header-label[b-ll87nw0tg6] {
    color: #64748b;
}

/* ==========================================
   SESSIONS LIST
   ========================================== */

.sessions-list[b-ll87nw0tg6] {
    display: flex;
    flex-direction: column;
}

.session-group[b-ll87nw0tg6] {
    margin-bottom: 4px;
}

.session-group-header[b-ll87nw0tg6] {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    padding: 6px 4px;
    margin: 0;
}

/* ==========================================
   SESSION ITEM
   ========================================== */

.session-item[b-ll87nw0tg6] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 4px;
    background: transparent;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.session-item:last-child[b-ll87nw0tg6] {
    border-bottom: none;
}

.session-item:hover[b-ll87nw0tg6] {
    background: rgba(0, 0, 0, 0.02);
}

.session-item.selected[b-ll87nw0tg6] {
    background: rgba(6, 182, 212, 0.06);
}

.session-item-button[b-ll87nw0tg6] {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 12px 0;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.session-item-button:active[b-ll87nw0tg6] {
    background: rgba(0, 0, 0, 0.04);
}

/* Three-dot menu */
.session-menu[b-ll87nw0tg6] {
    flex-shrink: 0;
}

.session-menu[b-ll87nw0tg6]  .mud-icon-button {
    color: #94a3b8;
    padding: 4px;
}

.session-menu[b-ll87nw0tg6]  .mud-icon-button:hover {
    color: #64748b;
}

[b-ll87nw0tg6] .delete-item {
    color: #ef4444;
}

/* Left icon */
.session-icon[b-ll87nw0tg6] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #94a3b8;
}

/* Title */
.session-title[b-ll87nw0tg6] {
    flex: 1;
    min-width: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.session-time[b-ll87nw0tg6] {
    font-weight: 400;
    color: #475569;
}

.session-name[b-ll87nw0tg6] {
    font-weight: 500;
    color: #1e293b;
}

.session-interaction-type[b-ll87nw0tg6] {
    font-weight: 400;
    color: #475569;
}

/* Right status icon */
.session-status[b-ll87nw0tg6] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.session-status[b-ll87nw0tg6]  .status-done {
    color: #06b6d4;
}

.session-status[b-ll87nw0tg6]  .status-draft {
    color: #f59e0b;
}

.session-status[b-ll87nw0tg6]  .status-empty {
    color: #e2e8f0;
}

/* ==========================================
   DARK MODE
   ========================================== */

:global(.mud-theme-dark) .session-group-header[b-ll87nw0tg6] {
    color: #64748b;
}

:global(.mud-theme-dark) .session-item[b-ll87nw0tg6] {
    border-bottom-color: #1e293b;
}

:global(.mud-theme-dark) .session-item:hover[b-ll87nw0tg6] {
    background: rgba(255, 255, 255, 0.03);
}

:global(.mud-theme-dark) .session-icon[b-ll87nw0tg6] {
    color: #64748b;
}

:global(.mud-theme-dark) .session-title[b-ll87nw0tg6] {
    color: #f1f5f9;
}

:global(.mud-theme-dark) .session-time[b-ll87nw0tg6] {
    color: #94a3b8;
}

:global(.mud-theme-dark) .session-name[b-ll87nw0tg6] {
    color: #f1f5f9;
}

:global(.mud-theme-dark) .session-interaction-type[b-ll87nw0tg6] {
    color: #94a3b8;
}

:global(.mud-theme-dark) .session-status[b-ll87nw0tg6]  .status-empty {
    color: #334155;
}

:global(.mud-theme-dark) .session-status[b-ll87nw0tg6]  .status-done {
    color: #22d3ee;
}

:global(.mud-theme-dark) .session-menu[b-ll87nw0tg6]  .mud-icon-button {
    color: #64748b;
}

:global(.mud-theme-dark) .session-menu[b-ll87nw0tg6]  .mud-icon-button:hover {
    color: #94a3b8;
}
