:root {
    --sc-sidebar-width: 16rem;
    --sc-sidebar-collapsed-width: 4.9rem;
    --sc-sidebar-top: 72px;
    --sc-shell-gap: 0.7rem;
    --sc-sidebar-bg: rgba(254, 247, 255, 0.70);
    --sc-sidebar-surface: rgba(254, 247, 255, 0.70);
    --sc-sidebar-surface-strong: rgba(254, 247, 255, 0.84);
    --sc-sidebar-surface-soft: rgba(254, 247, 255, 0.78);
    --sc-sidebar-border: rgba(191, 201, 195, 0.2);
    --sc-sidebar-border-soft: rgba(191, 201, 195, 0.14);
    --sc-sidebar-shadow: 0 1px 2px rgba(6, 78, 59, 0.05);
    --sc-sidebar-primary: #004435;
    --sc-sidebar-primary-soft: rgba(0, 68, 53, 0.08);
    --sc-sidebar-accent: #ae3200;
    --sc-sidebar-accent-soft: rgba(174, 50, 0, 0.1);
    --sc-sidebar-text: #1d1a22;
    --sc-sidebar-muted: #404945;
    --sc-sidebar-faint: #707974;
    --sc-mobile-topbar-height: 4.35rem;
    --sc-mobile-bottom-nav-height: 3.55rem;
    --sc-mobile-shell-gutter: 0.72rem;
    --sc-mobile-card-radius: 1.15rem;
    --sc-mobile-card-padding: 0.8rem;
    --sc-ui-card-radius: 1.25rem;
    --sc-ui-card-border: rgba(191, 201, 195, 0.22);
    --sc-ui-card-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
    --sc-ui-surface: rgba(255, 255, 255, 0.82);
    --sc-ui-surface-soft: rgba(254, 247, 255, 0.72);
    --sc-ui-focus-ring: 0 0 0 3px rgba(0, 68, 53, 0.12);
    --sc-ui-section-gap: 1rem;
    --sc-ui-page-max: 72rem;
    --sc-ui-muted: #58645f;
    --sc-ui-success: #006b54;
    --sc-ui-warning: #9a3412;
    --sc-ui-danger: #ba1a1a;
}

.sc-route-transition {
    position: fixed;
    left: 50%;
    top: 1rem;
    z-index: 10080;
    transform: translate(-50%, -0.65rem);
    opacity: 0;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    max-width: min(88vw, 28rem);
    padding: 0.62rem 0.9rem;
    border: 1px solid rgba(191, 201, 195, 0.34);
    border-radius: 999px;
    background: rgba(254, 247, 255, 0.92);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.1);
    color: #004435;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(18px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.sc-route-transition.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.sc-ui-page-header,
[data-sc-ui-page-header] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.sc-ui-primary-section,
[data-sc-ui-primary-section] {
    border: 1px solid var(--sc-ui-card-border);
    box-shadow: var(--sc-ui-card-shadow);
}

.sc-ui-compact-card,
[data-sc-ui-compact-card] {
    border: 1px solid var(--sc-ui-card-border);
    border-radius: var(--sc-ui-card-radius);
    background: var(--sc-ui-surface);
    box-shadow: var(--sc-ui-card-shadow);
}

.sc-ui-page,
[data-sc-ui-page] {
    width: min(100%, var(--sc-ui-page-max));
    margin-inline: auto;
}

.sc-ui-section-stack,
[data-sc-ui-section-stack] {
    display: grid;
    gap: var(--sc-ui-section-gap);
}

.sc-ui-kicker,
[data-sc-ui-kicker] {
    color: var(--sc-sidebar-accent);
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.sc-ui-heading,
[data-sc-ui-heading] {
    margin: 0;
    color: var(--sc-sidebar-primary);
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.sc-ui-copy,
[data-sc-ui-copy] {
    color: var(--sc-ui-muted);
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.55;
}

.sc-ui-action-row,
[data-sc-ui-action-row] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.sc-ui-button,
[data-sc-ui-button] {
    min-height: 2.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid rgba(0, 68, 53, 0.14);
    border-radius: 0.9rem;
    background: #ffffff;
    color: var(--sc-sidebar-primary);
    padding: 0.66rem 0.9rem;
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.sc-ui-button:hover,
[data-sc-ui-button]:hover {
    border-color: rgba(0, 68, 53, 0.26);
    transform: translateY(-1px);
}

.sc-ui-button[data-variant="primary"],
[data-sc-ui-button][data-variant="primary"] {
    background: var(--sc-sidebar-primary);
    color: #ffffff;
}

.sc-ui-button[data-variant="subtle"],
[data-sc-ui-button][data-variant="subtle"] {
    background: rgba(0, 68, 53, 0.06);
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
    body.sc-page-swipe-out [data-sidebar-main],
    body.sc-page-swipe-out main {
        pointer-events: none;
    }

    body.sc-page-swipe-left [data-sidebar-main],
    body.sc-page-swipe-left main {
        animation: scPageSwipeLeft 180ms cubic-bezier(0.4, 0, 0.2, 1) both;
    }

    body.sc-page-swipe-right [data-sidebar-main],
    body.sc-page-swipe-right main {
        animation: scPageSwipeRight 180ms cubic-bezier(0.4, 0, 0.2, 1) both;
    }

    body.sc-page-enter-right [data-sidebar-main],
    body.sc-page-enter-right main {
        animation: scPageEnterRight 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    body.sc-page-enter-left [data-sidebar-main],
    body.sc-page-enter-left main {
        animation: scPageEnterLeft 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }
}

@keyframes scPageSwipeLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0.42;
        transform: translateX(-18%);
    }
}

@keyframes scPageSwipeRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0.42;
        transform: translateX(18%);
    }
}

@keyframes scPageEnterRight {
    from {
        opacity: 0.48;
        transform: translateX(10%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scPageEnterLeft {
    from {
        opacity: 0.48;
        transform: translateX(-10%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sc-ui-resource-card,
[data-sc-ui-resource-card] {
    display: grid;
    gap: 0.65rem;
    border: 1px solid var(--sc-ui-card-border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.78);
    padding: 0.9rem;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

.sc-ui-empty-state,
[data-sc-ui-empty-state] {
    border: 1px dashed rgba(0, 68, 53, 0.2);
    border-radius: 1rem;
    background: rgba(0, 68, 53, 0.035);
    padding: 1rem;
    color: var(--sc-ui-muted);
}

.sc-ui-mobile-tabs,
[data-sc-ui-mobile-tabs] {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.sc-ui-mobile-tabs::-webkit-scrollbar,
[data-sc-ui-mobile-tabs]::-webkit-scrollbar {
    display: none;
}

.sc-ui-mobile-tabs a,
[data-sc-ui-mobile-tabs] a {
    flex: 0 0 auto;
    border: 1px solid rgba(191, 201, 195, 0.24);
    border-radius: 999px;
    background: rgba(254, 247, 255, 0.92);
    color: var(--sc-sidebar-primary);
    padding: 0.52rem 0.72rem;
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.sc-ui-status-chip,
[data-sc-ui-status-chip] {
    display: inline-flex;
    min-height: 2rem;
    align-items: center;
    gap: 0.42rem;
    border: 1px solid rgba(0, 68, 53, 0.12);
    border-radius: 999px;
    background: rgba(0, 68, 53, 0.055);
    padding: 0.42rem 0.72rem;
    color: var(--sc-sidebar-primary);
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
}

.sc-app-sidebar {
    position: fixed !important;
    isolation: isolate;
    left: 0;
    top: var(--sc-sidebar-top);
    width: var(--sc-sidebar-width);
    height: calc(100vh - var(--sc-sidebar-top));
    max-height: calc(100vh - var(--sc-sidebar-top));
    display: none;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem 0.8rem 0.85rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    background: var(--sc-sidebar-bg);
    backdrop-filter: blur(24px);
    border-right: 1px solid var(--sc-sidebar-border);
    box-shadow: var(--sc-sidebar-shadow);
    z-index: 40;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: width 0.22s ease, padding 0.22s ease;
}

.sc-app-sidebar::before,
.sc-app-sidebar::after {
    display: none;
}

.sc-app-sidebar > * {
    position: relative;
    z-index: 1;
}

.sc-app-sidebar::-webkit-scrollbar {
    width: 5px;
}

.sc-app-sidebar::-webkit-scrollbar-thumb {
    background: rgba(138, 153, 148, 0.34);
    border-radius: 999px;
}

.sc-app-sidebar-brand {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 0.75rem;
    padding: 0.1rem 0.1rem 0.8rem;
    border-bottom: 1px solid var(--sc-sidebar-border-soft);
}

.sc-app-sidebar-brand-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.sc-app-sidebar-brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--sc-sidebar-border);
    color: var(--sc-sidebar-primary);
    box-shadow: var(--sc-sidebar-shadow);
    flex-shrink: 0;
    overflow: hidden;
    padding: 0.3rem;
}

.sc-app-sidebar-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.sc-app-sidebar-brand-copy {
    min-width: 0;
}

.sc-app-sidebar-eyebrow,
.sc-app-sidebar-section-title,
.sc-app-sidebar-footnote {
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.sc-app-sidebar-eyebrow {
    color: var(--sc-sidebar-faint);
    font-size: 0.6rem;
    font-weight: 800;
}

.sc-app-sidebar-brand-title {
    margin: 0.1rem 0 0;
    color: var(--sc-sidebar-primary);
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.sc-app-sidebar-brand-subtitle {
    margin: 0.2rem 0 0;
    color: var(--sc-sidebar-muted);
    font-size: 0.72rem;
    font-weight: 550;
    line-height: 1.45;
}

.sc-app-sidebar-toggle {
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid var(--sc-sidebar-border);
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 247, 255, 0.7);
    color: var(--sc-sidebar-primary);
    box-shadow: var(--sc-sidebar-shadow);
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    flex-shrink: 0;
}

.sc-app-sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.84);
    border-color: var(--sc-sidebar-border);
    transform: translateY(-1px);
}

.sc-app-sidebar-toggle-icon {
    font-size: 1.2rem;
    line-height: 1;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.sc-app-sidebar-profile {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    gap: 0.82rem;
    min-height: max-content;
    padding: 1rem;
    border-radius: 1.45rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(191, 201, 195, 0.3);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.sc-app-sidebar-profile::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 0.2rem;
    background: linear-gradient(90deg, rgba(0, 68, 53, 0.9), rgba(174, 50, 0, 0.45), transparent);
}

.sc-app-sidebar-profile-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.sc-app-sidebar-avatar {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--sc-sidebar-border);
    box-shadow: var(--sc-sidebar-shadow);
}

.sc-app-sidebar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-app-sidebar-profile-copy {
    min-width: 0;
}

.sc-app-sidebar-profile-name {
    margin: 0;
    color: var(--sc-sidebar-primary);
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.15;
}

.sc-app-sidebar-profile-meta {
    margin: 0.18rem 0 0;
    color: var(--sc-sidebar-text);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.3;
}

.sc-app-sidebar-profile-separator {
    color: var(--sc-sidebar-faint);
    margin: 0 0.2rem;
}

.sc-app-sidebar-profile-plan {
    margin: 0.18rem 0 0;
    color: var(--sc-sidebar-faint);
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sc-app-sidebar-profile-kicker {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: rgba(247, 250, 249, 0.92);
    border: 1px solid rgba(191, 201, 195, 0.24);
    color: var(--sc-sidebar-primary);
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sc-app-sidebar-profile-insight {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.8rem 0.85rem;
    border-radius: 1.1rem;
    background: linear-gradient(180deg, rgba(244, 249, 247, 0.96), rgba(255, 255, 255, 0.82));
    border: 1px solid rgba(191, 201, 195, 0.28);
}

.sc-app-sidebar-profile-insight-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.sc-app-sidebar-profile-insight-label {
    color: var(--sc-sidebar-faint);
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.sc-app-sidebar-profile-insight-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.48rem;
    border-radius: 999px;
    background: rgba(0, 68, 53, 0.08);
    color: var(--sc-sidebar-primary);
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sc-app-sidebar-profile-insight-title {
    margin: 0;
    color: var(--sc-sidebar-primary);
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
}

.sc-app-sidebar-profile-insight-copy {
    margin: 0;
    color: var(--sc-sidebar-muted);
    font-size: 0.71rem;
    font-weight: 560;
    line-height: 1.45;
}

.sc-app-sidebar-profile-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.sc-app-sidebar-profile-stat {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    justify-content: space-between;
    min-height: 4rem;
    padding: 0.62rem 0.58rem;
    border-radius: 1.05rem;
    background: rgba(252, 252, 252, 0.9);
    border: 1px solid rgba(191, 201, 195, 0.22);
    box-shadow: none;
}

.sc-app-sidebar-profile-stat-value {
    color: var(--sc-sidebar-primary);
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.sc-app-sidebar-profile-stat-label {
    color: var(--sc-sidebar-faint);
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    line-height: 1.2;
}

.sc-app-sidebar-profile-note {
    margin: 0;
    color: var(--sc-sidebar-muted);
    font-size: 0.71rem;
    font-weight: 560;
    line-height: 1.55;
}

.sc-app-sidebar-group,
.sc-app-sidebar-footer {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    gap: 0.55rem;
}

.sc-app-sidebar-panel {
    padding: 0.72rem;
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid var(--sc-sidebar-border-soft);
    box-shadow: none;
}

.sc-app-sidebar-section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 0.2rem;
}

.sc-app-sidebar-section-title {
    color: var(--sc-sidebar-faint);
    font-size: 0.62rem;
    font-weight: 800;
}

.sc-app-sidebar-section-chip {
    display: inline-flex;
    align-items: center;
    min-height: 1.3rem;
    padding: 0.18rem 0.48rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--sc-sidebar-border-soft);
    color: var(--sc-sidebar-accent);
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sc-app-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
}

.sc-app-sidebar-link,
.sc-app-sidebar-footer-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 3rem;
    padding: 0.64rem 0.72rem;
    border-radius: 1.05rem;
    border: 1px solid transparent;
    color: var(--sc-sidebar-muted);
    text-decoration: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

button.sc-app-sidebar-footer-link,
button.sc-mobile-more-link {
    width: 100%;
    cursor: pointer;
    appearance: none;
    background: transparent;
    font: inherit;
    text-align: left;
}

.mobile-app-shell {
    display: none !important;
}

.sc-app-sidebar-link:hover,
.sc-app-sidebar-footer-link:hover {
    background: rgba(255, 255, 255, 0.54);
    border-color: var(--sc-sidebar-border-soft);
    color: var(--sc-sidebar-text);
    box-shadow: none;
    transform: translateX(2px);
}

.sc-app-sidebar-link.is-active,
.sc-app-sidebar-footer-link.is-active {
    background: rgba(255, 255, 255, 0.62);
    border-color: var(--sc-sidebar-border);
    color: var(--sc-sidebar-primary);
    box-shadow: none;
}

.sc-app-sidebar-link.is-active::before,
.sc-app-sidebar-footer-link.is-active::before {
    content: "";
    position: absolute;
    left: 0.32rem;
    top: 50%;
    width: 0.22rem;
    height: 1.45rem;
    border-radius: 999px;
    background: var(--sc-sidebar-primary);
    transform: translateY(-50%);
}

.sc-app-sidebar-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.92rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--sc-sidebar-border-soft);
    color: currentColor;
    flex-shrink: 0;
    box-shadow: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.sc-app-sidebar-link.is-active .sc-app-sidebar-icon,
.sc-app-sidebar-footer-link.is-active .sc-app-sidebar-icon {
    background: rgba(255, 255, 255, 0.82);
    border-color: var(--sc-sidebar-border);
}

.sc-app-sidebar-icon .material-symbols-outlined {
    font-size: 1.15rem;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.sc-app-sidebar-link-copy {
    min-width: 0;
}

.sc-app-sidebar-label {
    display: block;
    color: inherit;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
}

.sc-app-sidebar-link-note {
    display: block;
    margin-top: 0.18rem;
    color: var(--sc-sidebar-faint);
    font-size: 0.7rem;
    font-weight: 560;
    line-height: 1.35;
}

.sc-app-sidebar-footer {
    margin-top: auto;
    padding-top: 0.82rem;
}

.sc-app-sidebar-footnote {
    padding: 0.5rem 0.65rem 0;
    border-top: 1px solid rgba(130, 155, 145, 0.14);
    color: var(--sc-sidebar-faint);
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1.45;
}

body[data-sc-shell="command-dock"] {
    --sc-command-dock-width: 5.15rem;
    --sc-command-dock-expanded: 14.75rem;
    --sc-command-shell-bg: rgba(255, 255, 255, 0.86);
    --sc-command-shell-border: rgba(0, 68, 53, 0.1);
    --sc-command-shell-shadow: 0 14px 36px rgba(15, 23, 42, 0.045);
    --sc-command-shell-blur: 18px;
}

body[data-sc-shell="command-dock"] > .sc-app-sidebar + nav.fixed.top-0.w-full {
    display: none !important;
}

body[data-sc-shell="command-dock"] > nav.fixed.top-0,
body[data-sc-shell="command-dock"] > header.fixed.top-0,
body[data-sc-shell="command-dock"] > .topbar,
body[data-sc-shell="command-dock"] > .top-bar,
body[data-sc-shell="command-dock"] .sc-shell-topbar,
body[data-sc-shell="command-dock"] .sc-shell-sidebar,
body[data-sc-shell="command-dock"] .sc-motion-orb {
    display: none !important;
}

body[data-sc-shell="command-dock"] main[data-sidebar-main] {
    padding-top: 1.25rem !important;
}

body[data-sc-shell="command-dock"] {
    padding-top: 0 !important;
}

body[data-sc-shell="command-dock"] .sc-app-sidebar {
    display: none !important;
}

body[data-sc-shell="command-dock"].sc-dock-pinned .sc-app-sidebar {
    width: var(--sc-command-dock-expanded);
    padding-left: 0.74rem;
    padding-right: 0.74rem;
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-profile,
body[data-sc-shell="command-dock"] .sc-app-sidebar-section-row,
body[data-sc-shell="command-dock"] .sc-app-sidebar-footnote {
    display: none !important;
}

body[data-sc-shell="command-dock"] > nav.fixed.top-0:not(.sc-command-bar),
body[data-sc-shell="command-dock"] > nav.glass-header,
body[data-sc-shell="command-dock"] > header.glass-header {
    display: none !important;
}

body[data-sc-shell="command-dock"] footer {
    margin-left: var(--sc-sidebar-width-closed);
}

body[data-sc-shell="command-dock"].sc-sidebar-open footer {
    margin-left: var(--sc-sidebar-width-open);
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-brand {
    justify-content: center;
    gap: 0.42rem;
    padding: 0.08rem 0 0.42rem;
    border-bottom: 0;
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-home-mark {
    display: none !important;
}

body[data-sc-shell="command-dock"].sc-dock-pinned .sc-app-sidebar-brand {
    justify-content: flex-end;
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-toggle {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 1.05rem;
    background: rgba(0, 68, 53, 0.06);
    border-color: rgba(0, 68, 53, 0.12);
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-panel {
    padding: 0.3rem;
    border-radius: 1.35rem;
    background: transparent;
    border-color: transparent;
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-stack {
    gap: 0.28rem;
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-link,
body[data-sc-shell="command-dock"] .sc-app-sidebar-footer-link {
    min-height: 3.15rem;
    justify-content: flex-start;
    gap: 0.72rem;
    padding: 0.38rem;
    border-radius: 1.08rem;
    overflow: hidden;
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-icon {
    width: 2.34rem;
    height: 2.34rem;
    border-radius: 0.92rem;
    background: rgba(255, 255, 255, 0.8);
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-link-copy {
    opacity: 0;
    width: 0;
    transform: translateX(-0.35rem);
    transition: opacity 0.16s ease, transform 0.16s ease, width 0.16s ease;
}

body[data-sc-shell="command-dock"].sc-dock-pinned .sc-app-sidebar-link-copy {
    opacity: 1;
    width: auto;
    transform: translateX(0);
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-label {
    font-size: 0.82rem;
    font-weight: 750;
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-link-note {
    display: none;
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-link.is-active,
body[data-sc-shell="command-dock"] .sc-app-sidebar-footer-link.is-active {
    background: rgba(0, 68, 53, 0.055);
    border-color: rgba(0, 68, 53, 0.1);
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-link.is-active::before,
body[data-sc-shell="command-dock"] .sc-app-sidebar-footer-link.is-active::before {
    left: 0.04rem;
    width: 0.18rem;
    height: 1.65rem;
    background: var(--sc-sidebar-accent);
}

body[data-sc-shell="command-dock"] .sc-app-sidebar-lyne .sc-app-sidebar-icon {
    background: rgba(0, 68, 53, 0.1);
    color: var(--sc-sidebar-primary);
}

.sc-command-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
    flex: 1 1 auto;
    max-width: 58rem;
}

.sc-command-bar-copy {
    min-width: 0;
}

.sc-command-bar-copy p {
    margin: 0;
    color: var(--sc-sidebar-primary);
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: 0.94rem;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.sc-command-bar-copy span {
    display: block;
    margin-top: 0.08rem;
    max-width: 34rem;
    overflow: hidden;
    color: var(--sc-sidebar-muted);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sc-command-bar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    flex: 0 0 auto;
}

.sc-command-action {
    min-height: 2.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.36rem;
    border: 1px solid rgba(0, 68, 53, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--sc-sidebar-primary);
    padding: 0.45rem 0.72rem;
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.sc-command-action .material-symbols-outlined {
    font-size: 1rem;
}

.sc-command-action.is-primary {
    background: var(--sc-sidebar-primary);
    color: #ffffff;
    border-color: var(--sc-sidebar-primary);
}

.sc-student-context-drawer {
    position: fixed;
    inset: 0;
    z-index: 10010;
    pointer-events: none;
}

.sc-student-context-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.08);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.sc-student-context-panel {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: min(24rem, calc(100vw - 1.5rem));
    max-height: calc(100dvh - 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow-y: auto;
    border: 1px solid rgba(191, 201, 195, 0.24);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 72px rgba(15, 23, 42, 0.16);
    padding: 1rem;
    transform: translateX(calc(100% + 1.5rem));
    transition: transform 0.22s ease;
}

body.sc-student-context-open .sc-student-context-drawer {
    pointer-events: auto;
}

body.sc-student-context-open .sc-student-context-backdrop {
    opacity: 1;
}

body.sc-student-context-open .sc-student-context-panel {
    transform: translateX(0);
}

.sc-student-context-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.sc-student-context-kicker {
    margin: 0 0 0.25rem;
    color: var(--sc-sidebar-accent);
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sc-student-context-header h2 {
    margin: 0;
    color: var(--sc-sidebar-primary);
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: 1.28rem;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.sc-student-context-header span,
.sc-student-context-next span {
    color: var(--sc-sidebar-faint);
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sc-student-context-header button {
    width: 2.35rem;
    height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 68, 53, 0.1);
    border-radius: 0.9rem;
    background: rgba(0, 68, 53, 0.04);
    color: var(--sc-sidebar-primary);
}

.sc-student-context-next,
.sc-student-context-note {
    border: 1px solid rgba(191, 201, 195, 0.22);
    border-radius: 1rem;
    background: rgba(249, 251, 250, 0.84);
    padding: 0.85rem;
}

.sc-student-context-next strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--sc-sidebar-primary);
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.2;
}

.sc-student-context-next p,
.sc-student-context-note {
    margin: 0.32rem 0 0;
    color: var(--sc-sidebar-muted);
    font-size: 0.78rem;
    font-weight: 620;
    line-height: 1.45;
}

.sc-student-context-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.sc-student-context-actions {
    display: grid;
    gap: 0.45rem;
}

.sc-student-context-actions a {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(0, 68, 53, 0.1);
    border-radius: 0.95rem;
    background: #ffffff;
    color: var(--sc-sidebar-primary);
    padding: 0.62rem 0.75rem;
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.76rem;
    font-weight: 850;
    text-decoration: none;
}

.sc-student-context-search {
    display: grid;
    gap: 0.45rem;
    border: 1px solid rgba(0, 68, 53, 0.1);
    border-radius: 1rem;
    background: rgba(249, 251, 250, 0.86);
    padding: 0.72rem;
}

.sc-student-context-search label {
    color: var(--sc-sidebar-primary);
    font-family: "Manrope", "Inter", system-ui, sans-serif;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sc-student-context-search div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.42rem;
    border: 1px solid rgba(191, 201, 195, 0.28);
    border-radius: 0.85rem;
    background: #ffffff;
    padding: 0.34rem 0.4rem;
}

.sc-student-context-search .material-symbols-outlined {
    color: var(--sc-sidebar-muted);
    font-size: 1.1rem;
}

.sc-student-context-search input {
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--sc-sidebar-primary);
    font: 700 0.82rem/1.2 "Inter", system-ui, sans-serif;
    outline: none;
}

.sc-student-context-search button {
    min-height: 2rem;
    border: 0;
    border-radius: 0.68rem;
    background: var(--sc-sidebar-primary);
    color: #ffffff;
    padding: 0 0.65rem;
    font: 900 0.62rem/1 "Manrope", system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sc-student-context-search p {
    margin: 0;
    color: var(--sc-sidebar-faint);
    font-size: 0.68rem;
    font-weight: 650;
    line-height: 1.35;
}

.sc-command-palette[hidden] {
    display: none !important;
}

.sc-command-palette {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    align-items: start;
    justify-items: center;
    padding: min(12vh, 8rem) 1rem 1rem;
}

body:not(.sc-command-palette-open) .sc-document-command-palette {
    display: none !important;
    pointer-events: none !important;
}

.sc-command-palette-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.62), transparent 32rem),
        rgba(29, 26, 34, 0.14);
    backdrop-filter: blur(8px) saturate(0.9);
    -webkit-backdrop-filter: blur(8px) saturate(0.9);
}

.sc-command-palette-panel {
    position: relative;
    z-index: 1;
    width: min(52.5rem, calc(100vw - 2rem));
    max-height: min(49rem, calc(100dvh - 2rem));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    border: 1px solid rgba(191, 201, 195, 0.15);
    border-radius: 1.5rem;
    background: rgba(254, 247, 255, 0.74);
    box-shadow: 0 20px 40px rgba(29, 26, 34, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.62) inset;
    backdrop-filter: blur(10px) saturate(1.02);
    -webkit-backdrop-filter: blur(10px) saturate(1.02);
    overflow: hidden;
    transform: none;
    opacity: 1;
}

.sc-command-palette-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(179, 239, 216, 0.28), transparent 18rem),
        radial-gradient(circle at 88% 92%, rgba(255, 219, 208, 0.18), transparent 16rem);
    opacity: 0.72;
}

.sc-command-palette-search {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    background: rgba(254, 247, 255, 0.68);
    padding: 1.35rem 1.65rem 1.15rem;
}

.sc-command-palette-search .material-symbols-outlined {
    color: #004435;
    font-size: 1.55rem;
    font-variation-settings: 'wght' 500, 'FILL' 0, 'GRAD' 0, 'opsz' 24;
}

.sc-command-palette-search input {
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: #1d1a22;
    caret-color: #004435;
    font: 500 1.35rem/1.2 "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    letter-spacing: 0;
}

.sc-command-palette-search input::placeholder {
    color: rgba(64, 73, 69, 0.48);
}

.sc-command-palette-search kbd {
    border: 1px solid rgba(191, 201, 195, 0.3);
    border-radius: 0.48rem;
    background: rgba(231, 224, 235, 0.74);
    color: #1d1a22;
    padding: 0.42rem 0.56rem;
    font: 800 0.72rem/1 "Manrope", system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sc-command-palette-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem;
    max-height: min(34rem, calc(100dvh - 11rem));
    overflow-y: auto;
    padding: 1.1rem 1.65rem 1.35rem;
    scrollbar-width: thin;
    scrollbar-color: #bfc9c3 transparent;
}

.sc-command-palette-list::-webkit-scrollbar {
    width: 4px;
}

.sc-command-palette-list::-webkit-scrollbar-track {
    background: transparent;
}

.sc-command-palette-list::-webkit-scrollbar-thumb {
    background: #bfc9c3;
    border-radius: 999px;
}

.sc-command-palette-group {
    grid-column: 1 / -1;
    margin: 1rem 0 0.3rem;
    color: rgba(112, 121, 116, 0.82);
    font: 800 0.62rem/1 "Manrope", system-ui, sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.sc-command-palette-group::before,
.sc-command-palette-group::after {
    content: "---";
    letter-spacing: 0.16em;
    color: rgba(112, 121, 116, 0.48);
}

.sc-command-palette-group::before {
    margin-right: 0.45rem;
}

.sc-command-palette-group::after {
    margin-left: 0.45rem;
}

.sc-command-palette-group:first-child {
    margin-top: 0;
}

.sc-command-palette-item {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.92rem;
    min-height: 3.55rem;
    border: 1px solid transparent;
    border-radius: 0.85rem;
    background: transparent;
    color: #1d1a22;
    padding: 0.82rem 1.08rem;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.12s ease-out, background-color 0.12s ease-out, color 0.12s ease-out;
}

.sc-command-palette-item::before {
    display: none;
}

.sc-command-palette-item:hover,
.sc-command-palette-item.is-active {
    border-color: rgba(0, 68, 53, 0.1);
    background: #004435;
    color: #ffffff;
    box-shadow: none;
}

.sc-command-palette-item[data-sc-command-category="Actions"] {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(191, 201, 195, 0.1);
}

.sc-command-palette-item[data-sc-command-category="Actions"]:hover,
.sc-command-palette-item[data-sc-command-category="Actions"].is-active {
    background: rgba(231, 224, 235, 0.86);
    color: #1d1a22;
    box-shadow: none;
}

.sc-command-palette-item[data-sc-command-category="Tutorials / Guides"] .sc-command-palette-icon {
    color: #ae3200;
}

.sc-command-palette-item[data-sc-command-category="Actions"] .sc-command-palette-icon {
    color: #ae3200;
}

.sc-command-palette-icon {
    display: inline-flex;
    width: 1.9rem;
    height: 1.9rem;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    color: #404945;
    font-size: 1.35rem;
    font-variation-settings: 'FILL' 0, 'wght' 330, 'GRAD' 0, 'opsz' 24;
}

.sc-command-palette-item:hover .sc-command-palette-icon,
.sc-command-palette-item.is-active .sc-command-palette-icon {
    color: inherit;
}

.sc-command-palette-item[data-sc-command-category="Go To"]:hover .sc-command-palette-icon,
.sc-command-palette-item[data-sc-command-category="Go To"].is-active .sc-command-palette-icon {
    color: #b3efd8;
}

.sc-command-palette-copy {
    display: grid;
    gap: 0.16rem;
    min-width: 0;
}

.sc-command-palette-copy span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    min-width: 0;
}

.sc-command-palette-copy strong {
    overflow: hidden;
    color: inherit;
    font: 720 0.91rem/1.12 "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sc-command-palette-copy em {
    flex: 0 0 auto;
    border-radius: 999px;
    color: rgba(64, 73, 69, 0.74);
    padding: 0;
    font: 800 0.61rem/1 "Manrope", system-ui, sans-serif;
    letter-spacing: 0.02em;
}

.sc-command-palette-copy small {
    overflow: hidden;
    color: rgba(64, 73, 69, 0.7);
    font: 560 0.68rem/1.28 "Inter", system-ui, sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sc-command-palette-item:hover .sc-command-palette-copy em,
.sc-command-palette-item.is-active .sc-command-palette-copy em,
.sc-command-palette-item:hover .sc-command-palette-copy small,
.sc-command-palette-item.is-active .sc-command-palette-copy small {
    color: rgba(255, 255, 255, 0.68);
}

.sc-command-palette-item[data-sc-command-category="Actions"]:hover .sc-command-palette-copy em,
.sc-command-palette-item[data-sc-command-category="Actions"].is-active .sc-command-palette-copy em,
.sc-command-palette-item[data-sc-command-category="Actions"]:hover .sc-command-palette-copy small,
.sc-command-palette-item[data-sc-command-category="Actions"].is-active .sc-command-palette-copy small {
    color: rgba(64, 73, 69, 0.72);
}

.sc-command-palette-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(249, 241, 253, 0.9);
    color: rgba(64, 73, 69, 0.75);
    padding: 0.78rem 1.65rem 0.95rem;
    font: 650 0.7rem/1.2 "Manrope", system-ui, sans-serif;
}

.sc-command-palette-footer span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.sc-command-palette-footer kbd {
    border: 1px solid rgba(191, 201, 195, 0.2);
    border-radius: 0.3rem;
    background: rgba(231, 224, 235, 0.82);
    color: #404945;
    padding: 0.26rem 0.42rem;
    font: 800 0.66rem/1 "Manrope", system-ui, sans-serif;
}

.sc-command-launcher {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    border: 1px solid rgba(0, 68, 53, 0.12);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.84);
    color: var(--sc-sidebar-primary);
    padding: 0;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.09);
    backdrop-filter: blur(8px) saturate(1.04);
    -webkit-backdrop-filter: blur(8px) saturate(1.04);
    cursor: pointer;
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.sc-command-launcher:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 68, 53, 0.2);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.sc-command-launcher .material-symbols-outlined {
    font-size: 1.12rem;
}

body[data-sc-shell="command-dock"] .sc-command-launcher {
    display: inline-flex;
}

@keyframes scCommandBackdropIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scCommandPanelIn {
    from {
        opacity: 0;
        transform: translateY(-0.85rem) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 640px) {
    .sc-command-palette {
        align-items: start;
        padding: 1rem 0.78rem;
    }

    .sc-command-palette-panel {
        width: 100%;
        max-height: calc(100dvh - 2rem);
        border-radius: 1.25rem;
    }

    .sc-command-palette-list {
        grid-template-columns: 1fr;
        max-height: calc(100dvh - 12.5rem);
        padding: 0.92rem;
    }

    .sc-command-palette-search {
        padding: 0.92rem;
    }

    .sc-command-palette-search input {
        font-size: 1rem;
    }

    .sc-command-palette-footer {
        padding: 0.74rem 0.92rem 0.88rem;
        font-size: 0.62rem;
    }
}

.sc-dock-notifications {
    position: relative;
}

.sc-dock-notification-badge {
    position: absolute;
    top: 0.2rem;
    right: 0.25rem;
    min-width: 1.1rem;
    height: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--sc-command-shell-bg);
    border-radius: 999px;
    background: #b42318;
    color: #ffffff;
    font: 900 0.58rem/1 "Manrope", system-ui, sans-serif;
}

.sc-dock-notification-badge.hidden {
    display: none !important;
}

.sc-achievement-badge-pulse { animation: scAchievementBadgePulse 1.8s ease-out 1; }

.sc-achievement-toast {
    position: fixed;
    right: 1rem;
    bottom: 5.5rem;
    z-index: 10080;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: min(21rem, calc(100vw - 2rem));
    padding: 0.8rem 0.9rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
    animation: scAchievementToastIn 0.38s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.sc-achievement-toast.is-leaving { animation: scAchievementToastOut 0.32s ease both; }

.sc-achievement-toast-icon {
    flex: 0 0 2.35rem;
    display: grid;
    place-items: center;
    height: 2.35rem;
    border-radius: 0.82rem;
    color: #a16207;
    font-size: 1.35rem;
}

.sc-achievement-toast-copy { display: grid; min-width: 0; }
.sc-achievement-toast-copy strong { color: var(--sc-sidebar-primary); font: 900 0.7rem/1.1 "Plus Jakarta Sans", system-ui, sans-serif; text-transform: uppercase; }
.sc-achievement-toast-copy span { overflow: hidden; color: rgba(64, 73, 69, 0.82); font: 750 0.8rem/1.25 "Manrope", system-ui, sans-serif; text-overflow: ellipsis; white-space: nowrap; }

@keyframes scAchievementBadgePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.34); }
    35% { transform: scale(1.12); box-shadow: 0 0 0 0.42rem rgba(245, 158, 11, 0.14); }
    100% { transform: scale(1); box-shadow: 0 0 0 0.72rem rgba(245, 158, 11, 0); }
}

@keyframes scAchievementToastIn {
    from { opacity: 0; transform: translateY(0.55rem) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scAchievementToastOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(0.45rem) scale(0.985); }
}

@media (prefers-reduced-motion: reduce) {
    .sc-achievement-badge-pulse,
    .sc-achievement-toast,
    .sc-achievement-toast.is-leaving {
        animation: none;
    }
}

.sc-dock-notifications-panel {
    position: fixed;
    left: calc(var(--sc-command-dock-width) + 0.75rem);
    bottom: 1rem;
    z-index: 10020;
    width: min(24rem, calc(100vw - 7rem));
    max-height: min(34rem, calc(100dvh - 2rem));
    overflow: hidden;
    border: 1px solid rgba(191, 201, 195, 0.24);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 72px rgba(15, 23, 42, 0.16);
}

body.sc-dock-pinned .sc-dock-notifications-panel {
    left: calc(var(--sc-command-dock-expanded) + 0.75rem);
}

@media (min-width: 1024px) {
    .sc-app-sidebar {
        display: flex !important;
        top: calc(var(--sc-sidebar-top) - 0.2rem);
        height: calc(100vh - var(--sc-sidebar-top) + 0.2rem);
        max-height: calc(100vh - var(--sc-sidebar-top) + 0.2rem);
        padding-top: 1.12rem;
        border-top-right-radius: 1.65rem;
        border-right-color: var(--sc-sidebar-border);
    }

    main[data-sidebar-main] {
        margin-left: var(--sc-sidebar-width) !important;
        transition: margin-left 0.22s ease;
    }

    body > .sc-app-sidebar + nav.fixed.top-0.w-full {
        padding-right: var(--sc-shell-gap);
        overflow: visible;
    }

    body > .sc-app-sidebar + nav.fixed.top-0.w-full::before {
        content: none;
        display: none;
    }

    body > .sc-app-sidebar + nav.fixed.top-0.w-full .topbar-inner {
        max-width: none !important;
        padding-left: calc(var(--sc-sidebar-width) + 1.35rem) !important;
        padding-right: 1.35rem !important;
        transition: padding-left 0.22s ease;
    }

    body.sc-sidebar-closed .sc-app-sidebar {
        width: var(--sc-sidebar-collapsed-width);
        padding-left: 0.55rem;
        padding-right: 0.55rem;
        gap: 0.72rem;
    }

    body.sc-sidebar-closed main[data-sidebar-main] {
        margin-left: var(--sc-sidebar-collapsed-width) !important;
    }

    body.sc-sidebar-closed > .sc-app-sidebar + nav.fixed.top-0.w-full::before {
        content: none;
        display: none;
    }

    body.sc-sidebar-closed > .sc-app-sidebar + nav.fixed.top-0.w-full .topbar-inner {
        padding-left: calc(var(--sc-sidebar-collapsed-width) + 1.1rem) !important;
    }

    body.sc-sidebar-closed .sc-app-sidebar-brand {
        justify-content: center;
        padding-bottom: 0.65rem;
    }

    body.sc-sidebar-closed .sc-app-sidebar-toggle {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.82);
    }

    body.sc-sidebar-closed .sc-app-sidebar-brand-copy,
    body.sc-sidebar-closed .sc-app-sidebar-profile-copy,
    body.sc-sidebar-closed .sc-app-sidebar-profile-kicker,
    body.sc-sidebar-closed .sc-app-sidebar-profile-insight,
    body.sc-sidebar-closed .sc-app-sidebar-profile-stats,
    body.sc-sidebar-closed .sc-app-sidebar-profile-note,
    body.sc-sidebar-closed .sc-app-sidebar-section-row,
    body.sc-sidebar-closed .sc-app-sidebar-section-title,
    body.sc-sidebar-closed .sc-app-sidebar-link-copy,
    body.sc-sidebar-closed .sc-app-sidebar-footnote {
        display: none !important;
    }

    body.sc-sidebar-closed .sc-app-sidebar-brand-main {
        justify-content: center;
    }

    body.sc-sidebar-closed .sc-app-sidebar-profile,
    body.sc-sidebar-closed .sc-app-sidebar-profile-row {
        justify-content: center;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    body.sc-sidebar-closed .sc-app-sidebar-profile {
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
        border-radius: 1.4rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.56));
        border-color: rgba(191, 201, 195, 0.18);
    }

    body.sc-sidebar-closed .sc-app-sidebar-panel {
        padding: 0.38rem 0.3rem;
        border-radius: 1.45rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.42));
        border-color: rgba(191, 201, 195, 0.16);
    }

    body.sc-sidebar-closed .sc-app-sidebar-link,
    body.sc-sidebar-closed .sc-app-sidebar-footer-link {
        justify-content: center;
        min-height: 3.2rem;
        padding-left: 0.32rem;
        padding-right: 0.32rem;
        border-radius: 1.15rem;
        background: transparent;
    }

    body.sc-sidebar-closed .sc-app-sidebar-link:hover,
    body.sc-sidebar-closed .sc-app-sidebar-footer-link:hover {
        background: rgba(255, 255, 255, 0.58);
        border-color: rgba(191, 201, 195, 0.18);
        transform: none;
    }

    body.sc-sidebar-closed .sc-app-sidebar-link.is-active,
    body.sc-sidebar-closed .sc-app-sidebar-footer-link.is-active {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
        border-color: rgba(191, 201, 195, 0.26);
        box-shadow: 0 10px 24px rgba(6, 78, 59, 0.08);
    }

    body.sc-sidebar-closed .sc-app-sidebar-link.is-active::before,
    body.sc-sidebar-closed .sc-app-sidebar-footer-link.is-active::before {
        content: none;
    }

    body.sc-sidebar-closed .sc-app-sidebar-icon {
        width: 2.35rem;
        height: 2.35rem;
        border-radius: 0.98rem;
        background: rgba(255, 255, 255, 0.74);
    }

    body.sc-sidebar-closed .sc-app-sidebar-link.is-active .sc-app-sidebar-icon,
    body.sc-sidebar-closed .sc-app-sidebar-footer-link.is-active .sc-app-sidebar-icon {
        background: linear-gradient(180deg, rgba(0, 68, 53, 0.12), rgba(255, 255, 255, 0.94));
        border-color: rgba(0, 68, 53, 0.16);
        box-shadow: 0 8px 18px rgba(0, 68, 53, 0.12);
        transform: translateY(-1px);
    }
}

@media (max-width: 767px) {
    main[data-sidebar-main] {
        width: 100%;
        max-width: 100%;
        padding-left: var(--sc-mobile-shell-gutter) !important;
        padding-right: var(--sc-mobile-shell-gutter) !important;
        padding-top: calc(var(--sc-mobile-topbar-height) + 0.6rem) !important;
        padding-bottom: calc(var(--sc-mobile-bottom-nav-height) + 0.9rem) !important;
        overflow-x: clip;
    }

    main[data-sidebar-main] > * {
        max-width: 100% !important;
    }

    main[data-sidebar-main] .max-w-7xl,
    main[data-sidebar-main] .max-w-6xl,
    main[data-sidebar-main] .max-w-5xl,
    main[data-sidebar-main] .max-w-4xl,
    main[data-sidebar-main] .max-w-3xl,
    main[data-sidebar-main] .max-w-2xl {
        max-width: 100% !important;
    }

    .mobile-app-shell {
        height: var(--sc-mobile-bottom-nav-height) !important;
        padding: 0.18rem 0.18rem calc(env(safe-area-inset-bottom, 0px) * 0.25) !important;
        gap: 0 !important;
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
    }

    .mobile-app-shell:not([data-sc-mobile-shell-ready="true"]) {
        visibility: hidden;
    }

    .mobile-app-item {
        gap: 0.08rem !important;
        min-width: 0;
    }

    .mobile-app-item .material-symbols-outlined {
        font-size: 1.08rem !important;
    }

    .mobile-app-item .font-label,
    .mobile-app-item span.text-\[10px\],
    .mobile-app-item span.text-\[9px\] {
        font-size: 0.52rem !important;
        line-height: 1 !important;
        letter-spacing: 0.01em;
    }

    main[data-sidebar-main] [data-sc-mobile-card] {
        border-radius: var(--sc-mobile-card-radius) !important;
        padding: var(--sc-mobile-card-padding) !important;
    }

    main[data-sidebar-main] [data-sc-mobile-grid] {
        gap: 0.78rem !important;
    }

    main[data-sidebar-main] [data-sc-mobile-dual-grid] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.68rem !important;
    }

    main[data-sidebar-main] [data-dashboard-flow] {
        gap: 0.58rem !important;
    }

    main[data-sidebar-main] [data-dashboard-flow] > div {
        gap: 0.7rem !important;
        padding: 0.72rem !important;
        border-radius: 1rem !important;
        align-items: flex-start !important;
    }

    main[data-sidebar-main] [data-dashboard-flow] .w-6.h-6 {
        width: 1.15rem !important;
        height: 1.15rem !important;
        min-width: 1.15rem !important;
        margin-top: 0.08rem;
    }

    main[data-sidebar-main] [data-dashboard-flow] p.font-headline {
        font-size: 0.84rem !important;
        line-height: 1.18 !important;
    }

    main[data-sidebar-main] [data-dashboard-flow] p.text-xs,
    main[data-sidebar-main] [data-dashboard-flow] span.font-label {
        font-size: 0.62rem !important;
        line-height: 1.28 !important;
    }

    main[data-sidebar-main] [data-dashboard-subjects],
    main[data-sidebar-main] [data-analytics-scatter-details],
    main[data-sidebar-main] [data-analytics-action-grid],
    main[data-sidebar-main] [data-analytics-hero-metrics],
    main[data-sidebar-main] [data-analytics-readiness-grid],
    main[data-sidebar-main] section.bg-primary .grid.grid-cols-1.md\:grid-cols-3.gap-8 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.68rem !important;
    }

    main[data-sidebar-main] [data-dashboard-subjects] > *,
    main[data-sidebar-main] [data-analytics-scatter-details] > *,
    main[data-sidebar-main] [data-analytics-action-grid] > *,
    main[data-sidebar-main] [data-analytics-hero-metrics] > *,
    main[data-sidebar-main] [data-analytics-readiness-grid] > *,
    main[data-sidebar-main] section.bg-primary .grid.grid-cols-1.md\:grid-cols-3.gap-8 > * {
        min-width: 0;
    }

    main[data-sidebar-main] .analytics-hero-shell {
        gap: 0.78rem !important;
    }

    main[data-sidebar-main] .analytics-hero-visual,
    main[data-sidebar-main] .analytics-energy-card {
        min-height: 0 !important;
        padding: 0.72rem !important;
        border-radius: 1.35rem !important;
    }

    main[data-sidebar-main] [data-analytics-action-grid] > *,
    main[data-sidebar-main] [data-analytics-hero-metrics] > *,
    main[data-sidebar-main] [data-analytics-readiness-grid] > *,
    main[data-sidebar-main] [data-analytics-scatter-details] > *,
    main[data-sidebar-main] section.bg-primary .grid.grid-cols-1.md\:grid-cols-3.gap-8 > article {
        padding: 0.72rem !important;
        border-radius: 1rem !important;
    }

    main[data-sidebar-main] [data-analytics-action-grid],
    main[data-sidebar-main] [data-analytics-hero-metrics],
    main[data-sidebar-main] [data-analytics-readiness-grid] {
        margin-top: 0.82rem !important;
    }

    main[data-sidebar-main] [data-analytics-action-grid] .text-2xl,
    main[data-sidebar-main] [data-analytics-hero-metrics] .text-3xl,
    main[data-sidebar-main] section.bg-primary .grid.grid-cols-1.md\:grid-cols-3.gap-8 .text-2xl,
    main[data-sidebar-main] [data-dashboard-subjects] h4 {
        font-size: 0.95rem !important;
        line-height: 1.08 !important;
    }

    main[data-sidebar-main] [data-analytics-action-grid] p,
    main[data-sidebar-main] [data-analytics-hero-metrics] .text-xs,
    main[data-sidebar-main] [data-analytics-readiness-grid] p,
    main[data-sidebar-main] section.bg-primary .grid.grid-cols-1.md\:grid-cols-3.gap-8 p,
    main[data-sidebar-main] [data-analytics-scatter-details] .text-xs,
    main[data-sidebar-main] [data-dashboard-subjects] p,
    main[data-sidebar-main] [data-dashboard-subjects] .font-label {
        font-size: 0.62rem !important;
        line-height: 1.3 !important;
    }

    main[data-sidebar-main] section.bg-primary .grid.grid-cols-1.md\:grid-cols-3.gap-8 p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }

    main[data-sidebar-main] section.bg-primary .grid.grid-cols-1.md\:grid-cols-3.gap-8 .w-14,
    main[data-sidebar-main] section.bg-primary .grid.grid-cols-1.md\:grid-cols-3.gap-8 .h-14 {
        width: 2.1rem !important;
        height: 2.1rem !important;
        margin-bottom: 0.6rem !important;
    }

    main[data-sidebar-main] [data-dashboard-subjects] {
        align-items: stretch;
    }

    main[data-sidebar-main] [data-dashboard-subjects] > * {
        height: 6.9rem !important;
        border-radius: 1rem !important;
    }

    main[data-sidebar-main] [data-dashboard-subjects] .absolute.bottom-0.p-6 {
        padding: 0.72rem !important;
    }

    main[data-sidebar-main] [data-dashboard-subjects] p {
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    main[data-sidebar-main] [data-analytics-scatter-details] {
        gap: 0.58rem !important;
    }

    main[data-sidebar-main] .analytics-energy-card .relative.w-full.h-56.md\:h-64 {
        height: 9rem !important;
    }

    main[data-sidebar-main] .analytics-energy-card .mt-8 {
        margin-top: 0.8rem !important;
    }

    main[data-sidebar-main] .analytics-energy-card .space-y-6 > * + * {
        margin-top: 0.78rem !important;
    }

    main[data-sidebar-main] .analytics-energy-card .p-4.bg-orange-50 {
        padding: 0.7rem !important;
        border-radius: 0.95rem !important;
    }
}

@media (max-width: 420px) {
    main[data-sidebar-main] {
        padding-left: 0.58rem !important;
        padding-right: 0.58rem !important;
        padding-top: calc(var(--sc-mobile-topbar-height) + 0.35rem) !important;
        padding-bottom: calc(var(--sc-mobile-bottom-nav-height) + 0.72rem) !important;
    }

    main[data-sidebar-main] .text-7xl,
    main[data-sidebar-main] .text-6xl,
    main[data-sidebar-main] .text-5xl {
        font-size: 1.64rem !important;
    }

    .mobile-app-item .font-label,
    .mobile-app-item span.text-\[10px\],
    .mobile-app-item span.text-\[9px\] {
        font-size: 0.48rem !important;
    }

    main[data-sidebar-main] [data-dashboard-subjects],
    main[data-sidebar-main] [data-analytics-scatter-details],
    main[data-sidebar-main] [data-analytics-action-grid],
    main[data-sidebar-main] [data-analytics-hero-metrics],
    main[data-sidebar-main] [data-analytics-readiness-grid],
    main[data-sidebar-main] section.bg-primary .grid.grid-cols-1.md\:grid-cols-3.gap-8 {
        grid-template-columns: 1fr !important;
    }

    main[data-sidebar-main] [data-dashboard-subjects] > * {
        height: 6rem !important;
    }
}

@media (max-width: 767px) {
    :root {
        --sc-mobile-topbar-height: 4rem;
        --sc-mobile-bottom-nav-height: 4.25rem;
        --sc-mobile-shell-gutter: 0.92rem;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    body.sc-mobile-app-ready {
        min-height: 100dvh;
        background-attachment: fixed;
        --sc-mobile-floating-bottom: calc(var(--sc-mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 0.85rem);
        --sc-mobile-floating-bottom-high: calc(var(--sc-mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 4.4rem);
    }

    nav.fixed.top-0 {
        height: var(--sc-mobile-topbar-height);
        overflow: visible;
    }

    nav.fixed.top-0 .hidden.md\:flex,
    nav.fixed.top-0 .relative.hidden.lg\:block {
        display: none !important;
    }

    body[data-sc-sidebar-page] .topbar-inner,
    body.sc-mobile-app-ready .topbar-inner {
        min-height: var(--sc-mobile-topbar-height);
        padding: 0.55rem 0.92rem !important;
    }

    body[data-sc-sidebar-page] nav.fixed.top-0,
    body.sc-mobile-app-ready nav.fixed.top-0 {
        height: var(--sc-mobile-topbar-height);
        overflow: visible;
    }

    body[data-sc-sidebar-page] nav.fixed.top-0 .hidden.md\:flex,
    body[data-sc-sidebar-page] nav.fixed.top-0 .relative.hidden.lg\:block,
    body.sc-mobile-app-ready nav.fixed.top-0 .hidden.md\:flex,
    body.sc-mobile-app-ready nav.fixed.top-0 .relative.hidden.lg\:block {
        display: none !important;
    }

    body[data-sc-sidebar-page] main[data-sidebar-main],
    main[data-sidebar-main],
    body.sc-mobile-app-ready main[data-sidebar-main] {
        min-height: 100dvh;
        padding-left: var(--sc-mobile-shell-gutter) !important;
        padding-right: var(--sc-mobile-shell-gutter) !important;
        padding-top: calc(var(--sc-mobile-topbar-height) + 0.7rem) !important;
        padding-bottom: calc(var(--sc-mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 1.15rem) !important;
        overflow-x: clip !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] * {
        max-width: 100%;
        min-width: 0;
    }

    body.sc-mobile-app-ready :where(button, [role="button"], summary, .mobile-app-item, .sc-mobile-more-link, a[class*="px-"], a[class*="py-"]) {
        min-height: 44px;
        touch-action: manipulation;
    }

    body.sc-mobile-app-ready :where(button, [role="button"], summary, .mobile-app-item, .sc-mobile-more-link) {
        -webkit-tap-highlight-color: rgba(0, 68, 53, 0.12);
    }

    body.sc-mobile-app-ready main[data-sidebar-main] [data-sc-mobile-section] {
        scroll-margin-top: calc(var(--sc-mobile-topbar-height) + 3.5rem);
    }

    body.sc-mobile-app-ready main[data-sidebar-main] [data-sc-mobile-priority="true"] {
        border-color: rgba(0, 68, 53, 0.16) !important;
        background: rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] [data-sc-mobile-secondary="true"] {
        margin-top: 0.78rem !important;
        border-color: rgba(191, 201, 195, 0.2) !important;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035) !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] h1,
    body.sc-mobile-app-ready main[data-sidebar-main] .text-7xl,
    body.sc-mobile-app-ready main[data-sidebar-main] .text-6xl,
    body.sc-mobile-app-ready main[data-sidebar-main] .text-5xl {
        font-size: clamp(1.85rem, 9vw, 2.35rem) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.02em !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] h2,
    body.sc-mobile-app-ready main[data-sidebar-main] .text-4xl {
        font-size: clamp(1.35rem, 6vw, 1.7rem) !important;
        line-height: 1.08 !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] h3,
    body.sc-mobile-app-ready main[data-sidebar-main] .text-3xl,
    body.sc-mobile-app-ready main[data-sidebar-main] .text-2xl {
        font-size: clamp(1.05rem, 4.8vw, 1.28rem) !important;
        line-height: 1.16 !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] p,
    body.sc-mobile-app-ready main[data-sidebar-main] .text-base,
    body.sc-mobile-app-ready main[data-sidebar-main] .text-sm {
        line-height: 1.42 !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] .grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.82rem !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] .gap-12,
    body.sc-mobile-app-ready main[data-sidebar-main] .gap-10,
    body.sc-mobile-app-ready main[data-sidebar-main] .gap-8,
    body.sc-mobile-app-ready main[data-sidebar-main] .gap-6 {
        gap: 0.9rem !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] .p-10,
    body.sc-mobile-app-ready main[data-sidebar-main] .p-8,
    body.sc-mobile-app-ready main[data-sidebar-main] .p-6 {
        padding: 1rem !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] .px-10,
    body.sc-mobile-app-ready main[data-sidebar-main] .px-8,
    body.sc-mobile-app-ready main[data-sidebar-main] .px-6 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] .py-12,
    body.sc-mobile-app-ready main[data-sidebar-main] .py-10,
    body.sc-mobile-app-ready main[data-sidebar-main] .py-8,
    body.sc-mobile-app-ready main[data-sidebar-main] .py-6 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] .mb-20,
    body.sc-mobile-app-ready main[data-sidebar-main] .mb-16,
    body.sc-mobile-app-ready main[data-sidebar-main] .mb-12,
    body.sc-mobile-app-ready main[data-sidebar-main] .mb-10,
    body.sc-mobile-app-ready main[data-sidebar-main] .mb-8 {
        margin-bottom: 1rem !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] .mt-20,
    body.sc-mobile-app-ready main[data-sidebar-main] .mt-16,
    body.sc-mobile-app-ready main[data-sidebar-main] .mt-12,
    body.sc-mobile-app-ready main[data-sidebar-main] .mt-10,
    body.sc-mobile-app-ready main[data-sidebar-main] .mt-8 {
        margin-top: 1rem !important;
    }

    body.sc-mobile-app-ready main[data-sidebar-main] .rounded-3xl,
    body.sc-mobile-app-ready main[data-sidebar-main] .rounded-\[3rem\],
    body.sc-mobile-app-ready main[data-sidebar-main] .rounded-\[2rem\] {
        border-radius: 1.25rem !important;
    }

    .mobile-app-shell {
        position: fixed !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 50 !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: calc(var(--sc-mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px)) !important;
        padding: 0.35rem 0.48rem calc(0.35rem + env(safe-area-inset-bottom, 0px)) !important;
        background: rgba(254, 247, 255, 0.94) !important;
        border-top: 1px solid rgba(191, 201, 195, 0.22) !important;
        box-shadow: 0 -14px 34px rgba(15, 23, 42, 0.08);
    }

    body.sc-mobile-app-ready nav.fixed.bottom-0:not(.mobile-app-shell) {
        display: none !important;
    }

    body.sc-mobile-app-ready nav.mobile-app-shell:not([data-sc-mobile-shell-ready="true"]) {
        display: none !important;
    }

    .mobile-app-item {
        display: flex !important;
        flex: 1 1 0 !important;
        min-width: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 0.08rem !important;
        height: 3.25rem;
        border: 0;
        border-radius: 1rem;
        background: transparent;
        color: var(--sc-sidebar-faint);
        font-family: "Manrope", "Inter", system-ui, sans-serif;
        font-weight: 800;
        text-decoration: none;
    }

    .mobile-app-item[data-active="true"] {
        background: rgba(0, 68, 53, 0.08);
        color: var(--sc-sidebar-primary);
    }

    .mobile-app-item[data-active="true"] .material-symbols-outlined {
        font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
    }

    .mobile-app-item .material-symbols-outlined {
        font-size: 1.25rem !important;
    }

    .mobile-app-item .font-label,
    .mobile-app-item span.text-\[10px\],
    .mobile-app-item span.text-\[9px\] {
        font-size: 0.58rem !important;
        line-height: 1 !important;
        letter-spacing: 0.02em !important;
    }

    .sc-mobile-more-sheet[hidden] {
        display: none !important;
    }

    .sc-mobile-more-sheet {
        position: fixed;
        inset: 0;
        z-index: 12050;
        pointer-events: auto;
    }

    .sc-mobile-more-backdrop {
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 50% 100%, rgba(0, 68, 53, 0.18), transparent 34rem),
            rgba(15, 23, 42, 0.18);
        opacity: 0;
        animation: scMoreBackdropIn 0.2s ease forwards;
    }

    .sc-mobile-more-panel {
        position: absolute;
        left: 0.62rem;
        right: 0.62rem;
        bottom: calc(var(--sc-mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px) - 0.12rem);
        border: 1px solid rgba(191, 201, 195, 0.28);
        border-radius: 2rem 2rem 1.35rem 1.35rem;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 241, 253, 0.96));
        box-shadow: 0 -10px 42px rgba(15, 23, 42, 0.16);
        padding: 0.74rem 0.76rem 0.92rem;
        transform: translateY(1.35rem) scale(0.96);
        transform-origin: 50% 100%;
        opacity: 0;
        animation: scMorePanelIn 0.24s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        overflow: hidden;
    }

    .sc-mobile-more-panel::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -5.2rem;
        width: min(27rem, 116vw);
        height: 12rem;
        border-radius: 50%;
        transform: translateX(-50%);
        background: rgba(0, 68, 53, 0.045);
        pointer-events: none;
    }

    .sc-mobile-more-grip {
        width: 2.4rem;
        height: 0.22rem;
        margin: 0 auto 0.65rem;
        border-radius: 999px;
        background: rgba(112, 121, 116, 0.28);
    }

    .sc-mobile-more-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        position: relative;
        z-index: 1;
        padding: 0 0.25rem 0.72rem;
    }

    .sc-mobile-more-header p {
        margin: 0;
        color: var(--sc-sidebar-primary);
        font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
        font-size: 1rem;
        font-weight: 800;
    }

    .sc-mobile-more-header button {
        display: inline-flex;
        width: 2.25rem;
        height: 2.25rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        color: var(--sc-sidebar-muted);
        background: rgba(243, 235, 247, 0.84);
    }

    .sc-mobile-more-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        position: relative;
        z-index: 1;
        gap: 0.58rem;
    }

    .sc-mobile-more-notifications {
        grid-column: 1 / -1;
        min-width: 0;
    }

    .sc-mobile-more-notifications > .sc-mobile-more-link {
        width: 100%;
    }

    .sc-mobile-more-notification-badge {
        display: inline-flex;
        min-width: 1.25rem;
        height: 1.25rem;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        border-radius: 999px;
        background: #b42318;
        color: #ffffff;
        font: 900 0.62rem/1 "Manrope", system-ui, sans-serif;
    }

    .sc-mobile-more-notification-badge.hidden {
        display: none !important;
    }

    .sc-mobile-more-notifications-panel {
        margin-top: 0.58rem;
        max-height: min(46dvh, 24rem);
        overflow: hidden;
        border: 1px solid rgba(191, 201, 195, 0.24);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    }

    .sc-mobile-more-notifications-panel[hidden] {
        display: none !important;
    }

    .sc-mobile-more-notifications-panel :where(a, button) {
        display: inline-flex !important;
        min-height: 44px !important;
        align-items: center !important;
        justify-content: center !important;
        touch-action: manipulation;
    }

    .sc-mobile-more-link {
        display: flex;
        min-height: 3.35rem;
        align-items: center;
        gap: 0.65rem;
        border-radius: 1rem;
        border: 1px solid rgba(191, 201, 195, 0.22);
        background: rgba(249, 241, 253, 0.72);
        padding: 0.7rem;
        color: var(--sc-sidebar-primary);
        font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
        font-size: 0.82rem;
        font-weight: 750;
        text-decoration: none;
        transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
    }

    a.sc-mobile-more-link,
    button.sc-mobile-more-link {
        display: flex !important;
        min-height: 3.35rem !important;
        align-items: center !important;
        gap: 0.65rem !important;
        border-radius: 1rem !important;
        border: 1px solid rgba(191, 201, 195, 0.22) !important;
        background: rgba(249, 241, 253, 0.72) !important;
        padding: 0.7rem !important;
        color: var(--sc-sidebar-primary) !important;
        font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif !important;
        font-size: 0.82rem !important;
        font-weight: 750 !important;
        text-decoration: none !important;
    }

    .sc-mobile-more-link:active {
        transform: scale(0.98);
    }

    .mobile-app-more-trigger {
        position: relative;
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .mobile-app-more-trigger.is-expanded {
        transform: translateY(-0.28rem) scale(1.04);
        color: var(--sc-sidebar-primary);
        background: rgba(0, 68, 53, 0.08);
    }

    body.sc-mobile-more-open .mobile-app-shell {
        box-shadow: 0 -18px 44px rgba(15, 23, 42, 0.1);
    }

    .sc-mobile-more-link .material-symbols-outlined {
        font-size: 1.15rem;
    }

    @keyframes scMoreBackdropIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes scMorePanelIn {
        from {
            opacity: 0;
            transform: translateY(1.35rem) scale(0.96);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .sc-mobile-section-nav {
        position: sticky;
        top: calc(var(--sc-mobile-topbar-height) + 0.34rem);
        z-index: 35;
        display: flex;
        gap: 0.46rem;
        max-width: 100%;
        margin: 0 0 0.85rem;
        padding: 0.35rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        border: 1px solid rgba(191, 201, 195, 0.2);
        border-radius: 999px;
        background: rgba(254, 247, 255, 0.92);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        scrollbar-width: none;
    }

    .sc-mobile-section-nav::-webkit-scrollbar {
        display: none;
    }

    .sc-mobile-section-nav a {
        flex: 0 0 auto;
        min-height: 2rem;
        border-radius: 999px;
        padding: 0.55rem 0.76rem;
        background: rgba(255, 255, 255, 0.72);
        color: var(--sc-sidebar-primary);
        font-family: "Manrope", "Inter", system-ui, sans-serif;
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-decoration: none;
        text-transform: uppercase;
        white-space: nowrap;
    }

    body[data-sc-mobile-page="dashboard"] .sc-mobile-section-nav {
        display: none !important;
    }

    body.sc-mobile-app-ready #lyne-hint,
    body.sc-mobile-app-ready #lyne-orb-toggle {
        display: none !important;
    }

    body.sc-mobile-app-ready #lyne-widget {
        pointer-events: none;
    }

    body.sc-mobile-app-ready #lyne-panel {
        pointer-events: none;
        left: 0.72rem !important;
        right: 0.72rem !important;
        bottom: calc(var(--sc-mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 0.7rem) !important;
        width: auto !important;
        max-width: none !important;
        max-height: calc(100dvh - var(--sc-mobile-topbar-height) - var(--sc-mobile-bottom-nav-height) - 1.8rem) !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        border-radius: 1.2rem !important;
    }

    body.sc-mobile-app-ready #lyne-panel.open {
        pointer-events: auto;
    }

    body.sc-mobile-app-ready #lyne-panel .lyne-power-card {
        display: none !important;
    }

    body.sc-mobile-app-ready #lyne-panel #lyne-chat {
        max-height: min(34dvh, 14rem) !important;
        overflow-y: auto !important;
    }

    body.sc-mobile-app-ready #lyne-panel .lyne-quick-prompts {
        max-height: 4.7rem;
        overflow-y: auto;
    }

    body.sc-mobile-app-ready #lyne-panel .lyne-composer,
    body.sc-mobile-app-ready #lyne-panel form {
        position: sticky;
        bottom: 0;
        z-index: 2;
    }

    body.sc-mobile-app-ready .lib-anno-toolbar {
        bottom: calc(var(--sc-mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 0.55rem) !important;
        left: 0.65rem !important;
        right: 0.65rem !important;
        z-index: 80 !important;
        max-width: calc(100vw - 1.3rem) !important;
    }

    body.sc-mobile-app-ready .lib-anno-toolbar.minimized {
        left: auto !important;
        right: 0.7rem !important;
        width: auto !important;
        max-width: calc(100vw - 1.4rem) !important;
    }

    body.sc-mobile-app-ready .lib-lyne-shell {
        display: none !important;
    }

    body[data-sc-mobile-page="dashboard"] main[data-sidebar-main] [data-dashboard-study-next],
    body[data-sc-mobile-page="dashboard"] main[data-sidebar-main] [data-dashboard-all-assignments],
    body[data-sc-mobile-page="dashboard"] main[data-sidebar-main] [data-dashboard-flow] {
        margin-bottom: 0.82rem !important;
    }

    body[data-sc-mobile-page="dashboard"] main[data-sidebar-main] [data-dashboard-subjects] {
        display: flex !important;
        gap: 0.72rem !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.2rem;
    }

    body[data-sc-mobile-page="dashboard"] main[data-sidebar-main] [data-dashboard-subjects] > * {
        flex: 0 0 72%;
        scroll-snap-align: start;
        height: 7.5rem !important;
    }

    body[data-sc-mobile-page="dashboard"] main[data-sidebar-main] [data-dashboard-flow] {
        max-height: 16.5rem;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    body[data-sc-mobile-page="schedule"] .schedule-toolbar {
        position: sticky;
        top: calc(var(--sc-mobile-topbar-height) + 0.45rem);
        z-index: 30;
        padding: 0.78rem !important;
        border-radius: 1.15rem !important;
    }

    body[data-sc-mobile-page="schedule"] .schedule-toolbar > div {
        gap: 0.62rem !important;
    }

    body[data-sc-mobile-page="schedule"] [data-bbk12-sync],
    body[data-sc-mobile-page="schedule"] [data-bbk12-disconnect],
    body[data-sc-mobile-page="schedule"] [data-google-calendar-sync],
    body[data-sc-mobile-page="schedule"] [data-google-calendar-disconnect] {
        display: none !important;
    }

    body[data-sc-mobile-page="schedule"] .schedule-toolbar .schedule-status-pill {
        min-height: 2.2rem;
        padding: 0.46rem 0.62rem;
        font-size: 0.66rem;
    }

    body[data-sc-mobile-page="schedule"] [data-schedule-new-session] {
        min-height: 2.85rem;
        flex: 1 1 auto;
        justify-content: center;
    }

    body[data-sc-mobile-page="schedule"] [data-schedule-mobile-auto-plan],
    body[data-sc-mobile-page="schedule"] [data-schedule-mobile-assignments] {
        min-height: 2.85rem;
        flex: 1 1 0;
        justify-content: center;
    }

    body[data-sc-mobile-page="schedule"] [data-schedule-new-assignment],
    body[data-sc-mobile-page="schedule"] [data-schedule-sync],
    body[data-sc-mobile-page="schedule"] [data-schedule-settings] {
        display: none !important;
    }

    body[data-sc-mobile-page="schedule"] .schedule-view-switch {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.28rem;
    }

    body[data-sc-mobile-page="schedule"] .schedule-selected-day-panel,
    body[data-sc-mobile-page="schedule"] [data-schedule-assignments-panel] {
        margin-top: 0.75rem !important;
    }

    body[data-sc-mobile-page="schedule"] .schedule-board-scroll {
        overflow-x: hidden !important;
        padding-bottom: 0 !important;
    }

    body[data-sc-mobile-page="schedule"] .schedule-board-grid {
        min-width: 0 !important;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    body[data-sc-mobile-page="schedule"] .schedule-day-column {
        min-height: auto !important;
        padding: 0.82rem !important;
        border-radius: 1.15rem !important;
    }

    body[data-sc-mobile-page="schedule"] .schedule-track {
        min-height: 12rem !important;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] section:first-of-type {
        margin-bottom: 0.82rem !important;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] .asymmetric-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.82rem !important;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] [data-cards-review-shell] {
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: 0 !important;
        order: -10;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] [data-cards-create-panel] {
        order: 4;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] [data-cards-import-panel] {
        order: 5;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] [data-cards-linked-school-work] {
        order: 1;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] [data-cards-needs-cards] {
        order: 2;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] [data-cards-rating-grid] {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.58rem !important;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] [data-cards-rating-grid] > button:last-child {
        grid-column: 1 / -1;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] [data-cards-study-card] {
        aspect-ratio: auto !important;
        min-height: 21rem;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] [data-custom-decks-grid] {
        display: flex !important;
        gap: 0.72rem !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.2rem;
    }

    body[data-sc-mobile-page="cards"] main[data-sidebar-main] [data-custom-decks-grid] > * {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }

    body[data-sc-mobile-page="subjects"] [data-subject-grid] {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.72rem !important;
    }

    body[data-sc-mobile-page="subjects"] [data-subject-grid] > .group {
        display: grid !important;
        grid-template-columns: 5.4rem minmax(0, 1fr);
        min-height: 7rem !important;
    }

    body[data-sc-mobile-page="subjects"] [data-subject-grid] > .group > div:first-child {
        aspect-ratio: auto !important;
        height: 100% !important;
    }

    body[data-sc-mobile-page="subjects"] [data-subject-grid] > .group .p-8.flex.flex-col.flex-grow {
        padding: 0.78rem !important;
    }

    body[data-sc-mobile-page="subjects"] [data-subject-grid] > .group p.text-on-surface-variant.font-body {
        display: none !important;
    }

    body[data-sc-mobile-page="insights"] main[data-sidebar-main] .analytics-hero-shell,
    body[data-sc-mobile-page="achievements"] main[data-sidebar-main] .grid,
    body[data-sc-mobile-page="profile"] main[data-sidebar-main] .grid,
    body[data-sc-mobile-page="settings"] main[data-sidebar-main] .grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    body.sc-mobile-app-ready [data-open-community-upload],
    body.sc-mobile-app-ready .sc-floating-action,
    body.sc-mobile-app-ready .fixed.bottom-4,
    body.sc-mobile-app-ready .fixed.bottom-5,
    body.sc-mobile-app-ready .fixed.bottom-6 {
        bottom: var(--sc-mobile-floating-bottom) !important;
        max-width: calc(100vw - 1.3rem) !important;
    }

    body.sc-mobile-app-ready .sc-achievement-toast,
    body.sc-mobile-app-ready .sc-document-copy-toast {
        right: 0.65rem !important;
        bottom: var(--sc-mobile-floating-bottom) !important;
        width: min(22rem, calc(100vw - 1.3rem)) !important;
        max-width: calc(100vw - 1.3rem) !important;
    }

    body.sc-mobile-app-ready #lyne-panel.open ~ .sc-achievement-toast,
    body.sc-mobile-app-ready.sc-mobile-more-open .sc-achievement-toast {
        bottom: var(--sc-mobile-floating-bottom-high) !important;
    }
}

@media (min-width: 1024px) {
    body[data-sc-shell="command-dock"] > .sc-app-sidebar + nav.fixed.top-0.w-full {
        display: none !important;
    }

    body[data-sc-shell="command-dock"] .sc-app-sidebar {
        display: none !important;
    }

    body[data-sc-shell="command-dock"].sc-dock-pinned .sc-app-sidebar {
        display: none !important;
    }

body[data-sc-shell="command-dock"] [data-sidebar-main],
body[data-sc-shell="command-dock"].sc-sidebar-closed [data-sidebar-main] {
    margin-left: auto !important;
    margin-right: auto !important;
    width: auto !important;
    max-width: none !important;
    padding-top: 1.25rem !important;
    box-sizing: border-box;
}

body[data-sc-shell="command-dock"].sc-dock-pinned [data-sidebar-main] {
    margin-left: auto !important;
}

    body[data-sc-shell="command-dock"].sc-dock-pinned .sc-app-sidebar-link-copy {
        display: block !important;
        opacity: 1;
        width: auto;
        transform: translateX(0);
    }

    body[data-sc-shell="command-dock"].sc-sidebar-closed .sc-app-sidebar:hover {
        width: var(--sc-command-dock-width) !important;
    }

    body[data-sc-shell="command-dock"] .sc-app-sidebar-profile,
    body[data-sc-shell="command-dock"] .sc-app-sidebar-section-row,
    body[data-sc-shell="command-dock"] .sc-app-sidebar-footnote {
        display: none !important;
    }

    body[data-sc-shell="command-dock"] .sc-app-sidebar-panel,
    body[data-sc-shell="command-dock"].sc-sidebar-closed .sc-app-sidebar-panel {
        padding: 0.3rem !important;
        border-color: transparent !important;
        background: transparent !important;
    }

    body[data-sc-shell="command-dock"].sc-sidebar-closed .sc-app-sidebar-link-copy {
        display: block !important;
        opacity: 0;
        width: 0;
    }
}

@media (max-width: 767px) {
    body[data-sc-shell="command-dock"],
    body[data-sc-shell="command-dock"].library-mobile-fix {
        padding-top: 0 !important;
    }

    body[data-sc-shell="command-dock"] [data-sidebar-main],
    body[data-sc-shell="command-dock"].sc-mobile-app-ready [data-sidebar-main],
    body[data-sc-shell="command-dock"] main[data-sidebar-main],
    body[data-sc-shell="command-dock"].sc-mobile-app-ready main[data-sidebar-main] {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-top: 1rem !important;
        padding-bottom: calc(var(--sc-mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 1rem) !important;
    }

    body[data-sc-shell="command-dock"] .mobile-app-shell {
        height: var(--sc-mobile-bottom-nav-height) !important;
        padding: 0.32rem 0.34rem calc(env(safe-area-inset-bottom, 0px) + 0.32rem) !important;
        border-top: 1px solid rgba(0, 68, 53, 0.1);
        background: rgba(255, 255, 255, 0.93);
        box-shadow: 0 -12px 34px rgba(15, 23, 42, 0.08);
    }

    body[data-sc-shell="command-dock"] footer {
        margin-left: 0 !important;
        padding-bottom: calc(var(--sc-mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 1rem) !important;
    }

    body[data-sc-shell="command-dock"] .mobile-app-item {
        border-radius: 0.92rem;
    }

    body[data-sc-shell="command-dock"] .mobile-app-item[data-active="true"] {
        background: rgba(0, 68, 53, 0.07);
    }

    body[data-sc-shell="command-dock"] .mobile-app-item[data-mobile-lyne-toggle] {
        color: var(--sc-sidebar-primary);
    }

    body[data-sc-shell="command-dock"] .sc-command-bar {
        display: none !important;
    }

    body[data-sc-shell="command-dock"] .sc-command-launcher {
        display: none !important;
    }

    .sc-student-context-panel {
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
        max-height: calc(100dvh - 4rem);
        border-radius: 1.35rem 1.35rem 0 0;
        transform: translateY(calc(100% + 1.5rem));
    }

    body.sc-student-context-open .sc-student-context-panel {
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    body.sc-mobile-app-ready :where(button, [role="button"], summary, .mobile-app-item, .sc-mobile-more-link, .lyne-mini-btn, .lyne-prompt-chip, .lyne-send, .lyne-panel-icon-btn) {
        min-width: 44px !important;
        min-height: 44px !important;
        touch-action: manipulation;
    }

    body.sc-mobile-app-ready :where(a[class*="px-"], a[class*="py-"], a.sc-document-action, a.sc-ui-button) {
        min-height: 44px !important;
        touch-action: manipulation;
    }

    body.sc-mobile-app-ready :where(.sc-mobile-more-header button, .sc-document-panel-toggle, .sc-document-ink-toggle) {
        width: 44px !important;
        height: 44px !important;
    }
}

.sc-tc {
    position: fixed;
    inset: 0;
    z-index: 10090;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.18);
}

.sc-tc[hidden] {
    display: none !important;
}

.sc-tc-p {
    width: min(30rem, 100%);
    border: 1px solid rgba(191, 201, 195, 0.32);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    padding: 1rem;
    color: var(--sc-sidebar-ink);
}

.sc-tc-h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.sc-tc-t {
    margin: 0;
    color: var(--sc-sidebar-primary);
    font: 850 1.08rem/1.18 var(--sc-sidebar-heading-font);
}

.sc-tc-x {
    border: 1px solid rgba(191, 201, 195, 0.28);
    border-radius: 999px;
    background: #fff;
    width: 2rem;
    height: 2rem;
    color: var(--sc-sidebar-ink);
    cursor: pointer;
}

.sc-tc-g {
    display: grid;
    gap: 0.65rem;
}

.sc-tc-o {
    width: 100%;
    border: 1px solid rgba(0, 68, 53, 0.12);
    border-radius: 1rem;
    background: rgba(246, 250, 247, 0.82);
    padding: 0.85rem;
    text-align: left;
    color: var(--sc-sidebar-ink);
    cursor: pointer;
}

.sc-tc-o:hover,
.sc-tc-o:focus-visible {
    background: #fff;
    outline: none;
}

.sc-tc-o strong {
    display: block;
    color: var(--sc-sidebar-primary);
    font: 850 0.88rem/1.15 var(--sc-sidebar-heading-font);
}

@media (max-width: 767px) {
    .sc-tc {
        place-items: end center;
        padding: 0.75rem 0.75rem calc(var(--sc-mobile-bottom-nav-height, 4.25rem) + 0.75rem);
    }

    .sc-tc-p {
        border-radius: 1.15rem;
    }

    .sc-tc-t {
        font-size: 1rem;
    }
}
