/* _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;
    justify-content: space-around;
    align-items: flex-end;
    max-width: 400px;
    margin: 0 auto;
    padding: 8px 16px 12px;
    position: relative;
}

.nav-item[b-r4izlzvbc1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    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;
}

/* Radial glow effect on hover/active */
.nav-item[b-r4izlzvbc1]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
    pointer-events: none; /* Allow clicks to pass through */
}

.nav-item:hover[b-r4izlzvbc1]::before {
    opacity: 1;
}

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

.nav-item:active[b-r4izlzvbc1]::before {
    opacity: 1;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
}

/* FAB container should not have any nav-item effects */
.nav-item.fab-container[b-r4izlzvbc1]::before,
.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;
    height: 100px;
    display: flex;
    align-items: 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[b-r4izlzvbc1]::before {
    background: radial-gradient(circle at center, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
}

:global(.mud-theme-dark) .nav-item:active[b-r4izlzvbc1]::before {
    background: radial-gradient(circle at center, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
}

: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
   ========================================== */

@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 */
/* _content/Carely.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-hmj3l0vq94] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    /* Landing page inspired gradient - subtle but visible */
    background: linear-gradient(135deg,
        #EFF6FF 0%,
        #F5F3FF 35%,
        #FDF2F8 70%,
        #ECFEFF 100%);
    background-color: #F8FAFC; /* Fallback - light slate */
    overflow: hidden;
}

main[b-hmj3l0vq94] {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: auto;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.top-row[b-hmj3l0vq94] {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    height: 64px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1200;
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
    padding: 0 24px;
    border-radius: 0 0 12px 12px;
}

.top-row:hover[b-hmj3l0vq94] {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

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

/* Mobile layout adjustments */
/* Uses centralized bottom padding variable from app.css */
.mobile-layout[b-hmj3l0vq94] {
    padding-bottom: var(--bottom-nav-clearance);
}

.mobile-main[b-hmj3l0vq94] {
    padding-bottom: 0;
}

.mobile-content[b-hmj3l0vq94] {
    padding: 16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

/* Responsive adjustments */
@media (max-width: 599px) {
    .content[b-hmj3l0vq94] {
        padding: 16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

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

@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: 80px;
        padding-right: 80px;
    }
}

#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;
}

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

/* Hide drawer on mobile - prevents flash during initial load */
@media (max-width: 599.95px) {
    [b-hmj3l0vq94] .mud-drawer-container,
    [b-hmj3l0vq94] .mud-drawer {
        display: none !important;
        visibility: hidden !important;
    }
}
/* _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/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: 24px 16px;
    animation: fade-up-b-j4weu8q8j7 var(--duration-slow) var(--ease-out-expo);
}

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

/* 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);
}

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

.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
   ========================================== */

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

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

[b-jssqpnmpci] .mud-table .mud-table-pagination {
    margin-top: auto;
}
/* _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: 16px;
    min-height: 100%;
    animation: fade-up-b-sh1xfj0miw var(--duration-slow) var(--ease-out-expo);
}

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

/* ==========================================
   HEADER
   ========================================== */

.history-header[b-sh1xfj0miw] {
    margin-bottom: 24px;
}

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

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

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

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

/* ==========================================
   SEARCH BAR
   ========================================== */

.search-container[b-sh1xfj0miw] {
    margin-bottom: 16px;
}

.search-input-wrapper[b-sh1xfj0miw] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon[b-sh1xfj0miw] {
    position: absolute;
    left: 16px;
    color: var(--color-text-tertiary, #64748b);
    pointer-events: none;
}

.search-input[b-sh1xfj0miw] {
    width: 100%;
    padding: 12px 16px 12px 48px;
    font-size: 1rem;
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 1rem;
    background: var(--color-surface, #f9fafb);
    color: var(--color-text-primary, #1e293b);
    transition: border-color var(--duration-fast) ease,
                box-shadow var(--duration-fast) ease;
}

.search-input[b-sh1xfj0miw]::placeholder {
    color: var(--color-text-muted, #94a3b8);
}

.search-input:focus[b-sh1xfj0miw] {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

:global(.mud-theme-dark) .search-input[b-sh1xfj0miw] {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(51, 65, 85, 0.5);
    color: #f1f5f9;
}

:global(.mud-theme-dark) .search-input[b-sh1xfj0miw]::placeholder {
    color: #64748b;
}

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

/* ==========================================
   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: 48px 24px;
    text-align: center;
}

.empty-icon[b-sh1xfj0miw] {
    color: var(--color-text-muted, #94a3b8);
    margin-bottom: 16px;
}

.empty-text[b-sh1xfj0miw] {
    font-size: 1rem;
    color: var(--color-text-secondary, #64748b);
    margin: 0;
}

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

.sessions-list[b-sh1xfj0miw] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

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

.session-group-header[b-sh1xfj0miw] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-tertiary, #64748b);
    padding: 8px 4px;
    margin: 0;
}

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

.session-group-items[b-sh1xfj0miw] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ==========================================
   SESSION CARD
   ========================================== */

.session-card[b-sh1xfj0miw] {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--color-surface, #ffffff);
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 1rem;
    cursor: pointer;
    text-align: left;
    transition: all var(--duration-fast) ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.session-card:hover[b-sh1xfj0miw] {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.session-card:active[b-sh1xfj0miw] {
    transform: scale(0.98);
}

.session-card.selected[b-sh1xfj0miw] {
    border-color: #06b6d4;
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

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

:global(.mud-theme-dark) .session-card:hover[b-sh1xfj0miw] {
    border-color: rgba(34, 211, 238, 0.3);
}

.session-card-content[b-sh1xfj0miw] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.session-card-main[b-sh1xfj0miw] {
    flex: 1;
    min-width: 0;
}

.session-title[b-sh1xfj0miw] {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary, #1e293b);
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--duration-fast) ease;
}

.session-card:hover .session-title[b-sh1xfj0miw] {
    color: #06b6d4;
}

.session-title .unnamed[b-sh1xfj0miw] {
    font-style: italic;
    color: var(--color-text-secondary, #64748b);
}

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

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

.session-meta[b-sh1xfj0miw] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-tertiary, #64748b);
}

.meta-separator[b-sh1xfj0miw] {
    color: var(--color-text-muted, #94a3b8);
}

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

/* ==========================================
   SESSION CARD ACTIONS
   ========================================== */

.session-card-actions[b-sh1xfj0miw] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.journal-badge[b-sh1xfj0miw] {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    border-radius: 8px;
}

:global(.mud-theme-dark) .journal-badge[b-sh1xfj0miw] {
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
}

.chevron-icon[b-sh1xfj0miw] {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted, #94a3b8);
    transition: color var(--duration-fast) ease,
                transform var(--duration-fast) ease;
}

.session-card:hover .chevron-icon[b-sh1xfj0miw] {
    color: #06b6d4;
    transform: translateX(2px);
}

:global(.mud-theme-dark) .session-card:hover .chevron-icon[b-sh1xfj0miw] {
    color: #22d3ee;
}

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

@keyframes fade-up-b-sh1xfj0miw {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/Carely.Web/Components/Pages/Home.razor.rz.scp.css */
/* Mobile Home Container */
.mobile-home-container[b-3whldj83la] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 64px - 64px - env(safe-area-inset-bottom, 0px));
    padding: 24px;
    box-sizing: border-box;
}

.mobile-home-content[b-3whldj83la] {
    text-align: center;
    max-width: 100%;
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
}

/* Mobile icon with float animation */
.mobile-icon[b-3whldj83la] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    animation: subtle-float 4s ease-in-out infinite;
}

/* Desktop Hero Card */
.home-hero-card[b-3whldj83la] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
}

.home-hero-card:hover[b-3whldj83la] {
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1), 0 10px 12px -6px rgba(0, 0, 0, 0.05);
    border-color: rgba(6, 182, 212, 0.1);
    transition: all var(--duration-normal) var(--spring-smooth);
}

/* Desktop Actions Card */
.home-actions-card[b-3whldj83la] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
    animation-delay: 100ms;
    animation-fill-mode: both;
}

.home-actions-card:hover[b-3whldj83la] {
    box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.08), 0 6px 8px -4px rgba(0, 0, 0, 0.05);
    transition: all var(--duration-normal) var(--spring-smooth);
}

/* Icon Container with gradient and float animation */
.home-icon-container[b-3whldj83la] {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    margin-bottom: 8px;
    animation: subtle-float 4s ease-in-out infinite;
    transition: transform var(--duration-fast) var(--spring-bounce),
                box-shadow var(--duration-normal) var(--spring-smooth);
}

.home-icon-container:hover[b-3whldj83la] {
    transform: scale(1.05);
    box-shadow: 0 12px 20px -3px rgba(6, 182, 212, 0.4), 0 6px 8px -4px rgba(6, 182, 212, 0.25);
}

/* Welcome text styling */
.mobile-home-content[b-3whldj83la]  .mud-typography-h4 {
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
    animation-delay: 100ms;
    animation-fill-mode: both;
}

.mobile-home-content[b-3whldj83la]  .mud-typography-body1 {
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
    animation-delay: 200ms;
    animation-fill-mode: both;
}

.mobile-home-content[b-3whldj83la]  .mud-chip {
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
    animation-delay: 300ms;
    animation-fill-mode: both;
    transition: transform var(--duration-fast) var(--spring-bounce),
                box-shadow var(--duration-normal) ease;
}

.mobile-home-content[b-3whldj83la]  .mud-chip:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-premium-sm);
}

/* Quick actions title */
.home-actions-card[b-3whldj83la]  .mud-typography-h5 {
    position: relative;
    display: inline-block;
}

.home-actions-card[b-3whldj83la]  .mud-typography-h5::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Legal entity chip animation */
[b-3whldj83la] .mud-chip.mud-chip-outlined {
    transition: all var(--duration-fast) var(--spring-bounce);
}

[b-3whldj83la] .mud-chip.mud-chip-outlined:hover {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
}
/* _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 */
.journal-record-header-edit-name[b-ihvavzh2cl] {
    height: 33px;
}

.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;
}
/* _content/Carely.Web/Components/Pages/Record2.razor.rz.scp.css */
/* _content/Carely.Web/Components/Pages/RecordComponents/AudioRecordingSection.razor.rz.scp.css */
/* ==========================================
   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%;
}

.audio-recording-section.mobile[b-gt786jtyjf] {
    padding: 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;
    justify-content: center;
    width: 100%;
    flex: 1;
}

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

/* 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: 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 (128px to match prototype) */
.hero-record-button--mobile[b-gt786jtyjf] {
    width: 128px;
    height: 128px;
}

/* 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;
    }
}

/* ==========================================
   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;
    height: 100%;
    padding: 16px;
    gap: 16px;
    animation: fade-up var(--duration-slow) var(--ease-out-expo);
}

/* ==========================================
   TRANSCRIPTION CARD
   ========================================== */

.card-transcription[b-ytu5hrsyca] {
    background: #f3f4f6; /* gray-100 */
    border: 1px solid #e5e7eb; /* gray-200 */
    border-radius: 1rem;
    padding: 1rem;
    transition: border-color var(--duration-normal) ease,
                box-shadow var(--duration-normal) ease;
}

.card-transcription:focus-within[b-ytu5hrsyca] {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

/* Dark mode transcription card */
:global(.mud-theme-dark) .card-transcription[b-ytu5hrsyca] {
    background: rgba(30, 41, 59, 0.5); /* slate-800 */
    border: 1px solid rgba(51, 65, 85, 0.5);
}

/* ==========================================
   AI RESPONSE CARD
   ========================================== */

.card-ai-response[b-ytu5hrsyca] {
    background: linear-gradient(135deg, #ecfeff, #f0fdfa); /* cyan-50 to teal-50 */
    border: 1px solid #a5f3fc; /* cyan-200 */
    border-radius: 1rem;
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    transition: border-color var(--duration-normal) ease,
                box-shadow var(--duration-normal) ease;
}

.card-ai-response:focus-within[b-ytu5hrsyca] {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

/* Dark mode AI response card */
:global(.mud-theme-dark) .card-ai-response[b-ytu5hrsyca] {
    background: linear-gradient(135deg,
        rgba(6, 182, 212, 0.1),
        rgba(20, 184, 166, 0.05)
    );
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* ==========================================
   CARD LABELS
   ========================================== */

.card-label[b-ytu5hrsyca] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-tertiary, #64748b);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* AI response card label in light mode */
.card-ai-response .card-label[b-ytu5hrsyca] {
    color: #0891b2; /* cyan-600 */
}

/* Dark mode label colors */
:global(.mud-theme-dark) .card-label[b-ytu5hrsyca] {
    color: #94a3b8;
}

:global(.mud-theme-dark) .card-ai-response .card-label[b-ytu5hrsyca] {
    color: #22d3ee;
}

/* ==========================================
   CARD ICONS
   ========================================== */

.card-icon[b-ytu5hrsyca] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
}

.card-icon--rose[b-ytu5hrsyca] {
    background: rgba(251, 207, 232, 0.6); /* rose pastel */
    color: #f43f5e; /* rose-500 */
}

.card-icon--cyan[b-ytu5hrsyca] {
    background: rgba(165, 243, 252, 0.6); /* cyan pastel */
    color: #06b6d4; /* cyan-500 */
}

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

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

/* ==========================================
   TRANSCRIPT EDITOR
   ========================================== */

.transcript-editor[b-ytu5hrsyca] {
    border-radius: 8px;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out-expo);
}

.transcript-editor.collapsed[b-ytu5hrsyca] {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.transcript-editor.collapsed[b-ytu5hrsyca]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #f3f4f6);
    pointer-events: none;
}

:global(.mud-theme-dark) .transcript-editor.collapsed[b-ytu5hrsyca]::after {
    background: linear-gradient(transparent, rgba(30, 41, 59, 0.8));
}

.transcript-editor.expanded[b-ytu5hrsyca] {
    max-height: none;
}

.transcript-editor[b-ytu5hrsyca]  .chat-transcript-container {
    padding: 0;
    min-height: auto;
    max-height: none;
    height: 100%;
}

.transcript-editor[b-ytu5hrsyca]  .transcript-textarea {
    width: 100%;
}

.transcript-editor[b-ytu5hrsyca]  .transcript-textarea .mud-input-control {
    margin: 0;
}

.transcript-editor[b-ytu5hrsyca]  .transcript-textarea .mud-input-slot {
    font-size: 0.875rem;
    color: var(--color-text-secondary, #475569);
    line-height: 1.6;
}

:global(.mud-theme-dark) .transcript-editor[b-ytu5hrsyca]  .transcript-textarea .mud-input-slot {
    color: #cbd5e1;
}

/* ==========================================
   EXPAND TOGGLE
   ========================================== */

.expand-toggle[b-ytu5hrsyca] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 8px;
    margin-top: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary, #06b6d4);
    transition: color var(--duration-fast) ease;
}

.expand-toggle:hover[b-ytu5hrsyca] {
    color: var(--color-primary-darken, #0891b2);
}

/* View toggle wrapper */
.view-toggle-wrapper[b-ytu5hrsyca] {
    margin-left: auto;
}

/* ==========================================
   JOURNAL CONTENT
   ========================================== */

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

/* Override Quill editor height for mobile */
.journal-content[b-ytu5hrsyca]  #quill-journal-editor {
    min-height: 200px !important;
    border-radius: 8px;
    border: none;
    background: transparent;
}

/* Hide the generate button and model selector in mobile journal view */
.journal-editor-wrapper[b-ytu5hrsyca]  > .mud-button-filled:first-child,
.journal-editor-wrapper[b-ytu5hrsyca]  > .mud-select:first-child {
    display: none !important;
}

/* Make MudPaper backgrounds transparent in mobile view */
.journal-content[b-ytu5hrsyca]  .mud-paper {
    background: transparent;
    box-shadow: none;
}

/* ==========================================
   ADD MORE AUDIO BUTTON
   ========================================== */

.add-audio-container[b-ytu5hrsyca] {
    padding-top: 16px;
    padding-bottom: var(--bottom-content-padding);
    margin-top: auto;
}

.add-audio-container[b-ytu5hrsyca]  .mud-button-outlined {
    border: 1.5px solid var(--color-primary) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 500;
    padding: 10px 24px !important;
    min-height: 48px;
    transition: all var(--duration-fast) var(--spring-bounce) !important;
    width: 100%;
}

.add-audio-container[b-ytu5hrsyca]  .mud-button-outlined:hover {
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15), var(--shadow-premium-sm) !important;
    transform: scale(1.01);
    background: rgba(6, 182, 212, 0.04) !important;
}

.add-audio-container[b-ytu5hrsyca]  .mud-button-outlined:active {
    transform: scale(0.98);
}
/* _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;
    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;
}

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

.recording-indicator[b-z7l9wmqmcz] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.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 Journal button container */
.continue-button-container[b-z7l9wmqmcz] {
    padding: 16px 0;
    padding-bottom: var(--bottom-content-padding);
}

/* Primary action button (Generate Journal) - 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;
}

/* Secondary/Outlined buttons (like "Add more audio") */
.continue-button-container[b-z7l9wmqmcz]  .mud-button-outlined {
    border: 1.5px solid var(--color-primary) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 500;
    padding: 10px 24px !important;
    min-height: 48px;
    transition: all var(--duration-fast) var(--spring-bounce) !important;
}

.continue-button-container[b-z7l9wmqmcz]  .mud-button-outlined:hover {
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15), var(--shadow-premium-sm) !important;
    transform: scale(1.02);
    background: rgba(6, 182, 212, 0.04) !important;
}

.continue-button-container[b-z7l9wmqmcz]  .mud-button-outlined:active {
    transform: scale(0.95);
}

/* 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: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: #FAFAFA;
}

.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;
    padding-bottom: var(--bottom-nav-clearance-minimal); /* Account for bottom nav */
}
/* _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/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 */
/* Prominent Language Selector - Carely Brand */
.language-selector-prominent[b-2udu15bk6p] {
    width: 100%;
    max-width: 24rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.language-label[b-2udu15bk6p] {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: var(--color-text-tertiary, #64748b);
    margin-bottom: 0.75rem;
}

.language-options[b-2udu15bk6p] {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 1rem;
    background: var(--color-surface, #ffffff);
    border: 1px solid var(--color-border, #e5e7eb);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.language-option[b-2udu15bk6p] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 0.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
}

.language-option:hover:not(:disabled):not(.active)[b-2udu15bk6p] {
    background: rgba(6, 182, 212, 0.1);
}

.language-option:hover:not(:disabled):not(.active) .language-name[b-2udu15bk6p] {
    color: #0891b2;
}

.language-option:disabled[b-2udu15bk6p] {
    opacity: 0.5;
    cursor: not-allowed;
}

.language-option.active[b-2udu15bk6p] {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}

.flag-container[b-2udu15bk6p] {
    width: 3rem;
    height: 2rem;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.flag-container.selected[b-2udu15bk6p] {
    ring: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.flag-image[b-2udu15bk6p] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-name[b-2udu15bk6p] {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-secondary, #475569);
    transition: color 0.2s ease;
}

.language-option.active .language-name[b-2udu15bk6p] {
    color: #ffffff;
}

.language-hint[b-2udu15bk6p] {
    font-size: 0.75rem;
    color: var(--color-text-muted, #94a3b8);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Dark mode support */
:global(.mud-theme-dark) .language-options[b-2udu15bk6p] {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(51, 65, 85, 0.5);
    box-shadow: none;
}

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

:global(.mud-theme-dark) .language-name[b-2udu15bk6p] {
    color: #cbd5e1;
}

:global(.mud-theme-dark) .language-option:hover:not(:disabled):not(.active) .language-name[b-2udu15bk6p] {
    color: #22d3ee;
}

:global(.mud-theme-dark) .language-hint[b-2udu15bk6p] {
    color: #64748b;
}
/* _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 */
/* Session item with delete button */
.session-item-wrapper[b-ll87nw0tg6] {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 12px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

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

.session-item-wrapper.selected[b-ll87nw0tg6] {
    background-color: rgba(6, 182, 212, 0.10);
    border-left: 3px solid #06b6d4;
}

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

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

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

.session-edit-btn-wrapper[b-ll87nw0tg6] {
    display: none;
    z-index: 1;
    padding-left: 4px;
}

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

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

.session-item-wrapper:hover .session-edit-btn-wrapper[b-ll87nw0tg6] {
    display: inline-block;
}

.session-edit-btn[b-ll87nw0tg6] {
    font-size: 14px;
}

.session-edit-btn svg[b-ll87nw0tg6] {
    font-size: 10px;
}

.session-name-text[b-ll87nw0tg6] {
    line-height: 24px;
    max-width: 190px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 2px;
}

.session-item-wrapper:hover .session-name-text-wrapper[b-ll87nw0tg6] {
    grid-template-columns: fit-content(60%) fit-content(10%) fit-content(10%);
}
.session-name-text-wrapper[b-ll87nw0tg6] {
    display: grid;
    grid-template-columns: fit-content(100%);
}

.session-cost-btn[b-ll87nw0tg6] {
    padding-left: 0;
}
