:root {
    color-scheme: dark;
    background: #06090a;
    color: #eefaf8;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

a {
    color: #b8fff3;
    text-decoration: none;
}

.runtime-shell {
    display: grid;
    grid-template-rows: 1fr;
    min-height: 100vh;
    min-height: 100dvh;
    background: #06090a;
    --runtime-dock-gap: 6px;
    --runtime-dock-height: 48px;
}

.runtime-workspace {
    position: relative;
    min-height: 0;
    overflow: hidden;
}

.field-surface {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #050708;
    cursor: grab;
    outline: none;
    touch-action: none;
}

.field-surface.is-panning {
    cursor: grabbing;
}

.field-surface__camera,
.field-surface__scan,
.field-surface__viewport,
.field-surface__canvas {
    position: absolute;
    inset: 0;
}

.field-surface__camera {
    background: #050708;
}

.field-surface__scan {
    z-index: 3;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(215, 255, 243, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 255, 243, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.field-surface__viewport {
    z-index: 4;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.6);
}

.field-surface__canvas {
    min-width: 4912px;
    transform: translateX(0);
    will-change: transform;
}

.field-surface__panorama {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-width: 4912px;
    background-image:
        linear-gradient(180deg, rgba(10, 30, 41, 0.08), rgba(5, 7, 8, 0.16)),
        linear-gradient(180deg, rgba(100, 157, 173, 0.2) 0%, rgba(58, 95, 112, 0.14) 34%, rgba(198, 153, 106, 0.16) 49%, rgba(24, 42, 45, 0.94) 50%, rgba(13, 23, 27, 0.98) 100%),
        radial-gradient(circle at 12% 18%, rgba(250, 225, 178, 0.26), transparent 14%),
        radial-gradient(circle at 34% 44%, rgba(255, 243, 219, 0.08), transparent 11%),
        radial-gradient(circle at 66% 40%, rgba(255, 243, 219, 0.07), transparent 10%),
        radial-gradient(circle at 82% 20%, rgba(250, 225, 178, 0.18), transparent 12%),
        linear-gradient(90deg, rgba(5, 7, 8, 0.36), rgba(5, 7, 8, 0.08) 18%, rgba(5, 7, 8, 0.08) 82%, rgba(5, 7, 8, 0.34));
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 4912px 100%;
}

.field-surface__panorama::before,
.field-surface__panorama::after {
    content: "";
    position: absolute;
    inset: 0;
}

.field-surface__panorama::before {
    top: 31%;
    bottom: 47%;
    background-image:
        radial-gradient(120px 50px at 8% 100%, rgba(35, 58, 64, 0.95), transparent 66%),
        radial-gradient(200px 76px at 18% 100%, rgba(29, 49, 56, 0.96), transparent 68%),
        radial-gradient(180px 64px at 31% 100%, rgba(40, 63, 68, 0.95), transparent 67%),
        radial-gradient(240px 82px at 49% 100%, rgba(26, 45, 52, 0.98), transparent 69%),
        radial-gradient(210px 70px at 63% 100%, rgba(37, 59, 63, 0.96), transparent 67%),
        radial-gradient(170px 60px at 77% 100%, rgba(30, 51, 55, 0.95), transparent 68%),
        radial-gradient(200px 74px at 92% 100%, rgba(24, 41, 47, 0.98), transparent 70%);
    background-repeat: repeat-x;
    background-size: 1228px 100%;
    opacity: 0.96;
}

.field-surface__panorama::after {
    top: 49.3%;
    bottom: auto;
    height: 2px;
    background: linear-gradient(90deg, rgba(184, 255, 243, 0.12), rgba(184, 255, 243, 0.55) 50%, rgba(184, 255, 243, 0.12));
    box-shadow: 0 0 20px rgba(184, 255, 243, 0.12);
}

.field-surface__north {
    position: absolute;
    top: 42%;
    z-index: 5;
    width: 0;
    transform: translateX(-50%);
    pointer-events: none;
}

.field-surface__north::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0;
    width: 2px;
    height: 72px;
    background: linear-gradient(180deg, rgba(184, 255, 243, 0.95), rgba(184, 255, 243, 0.08));
    box-shadow: 0 0 18px rgba(184, 255, 243, 0.22);
}

.field-surface__north span {
    position: absolute;
    left: 0;
    top: -22px;
    transform: translateX(-50%);
    padding: 4px 8px;
    border: 1px solid rgba(184, 255, 243, 0.4);
    border-radius: 999px;
    background: rgba(7, 14, 16, 0.84);
    color: #b8fff3;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.field-surface__objects {
    position: absolute;
    inset: 0;
    z-index: 6;
}

.field-object {
    position: absolute;
    display: flex;
    align-items: center;
    color: #eefaf8;
}

.field-object--flip {
    flex-direction: row-reverse;
}

.field-object.is-hidden {
    display: none;
}

.field-object__target {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(215, 255, 243, 0.9);
    border-radius: 50%;
    background: rgba(18, 23, 24, 0.2);
    box-shadow: 0 0 22px rgba(215, 255, 243, 0.2);
}

.field-object__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
}

.field-object__stem {
    display: block;
    width: 18px;
    height: 1px;
    background: rgba(215, 255, 243, 0.75);
}

.field-object__label {
    display: grid;
    gap: 0.08rem;
    min-width: 128px;
    padding: 7px 12px 8px 10px;
    border: 1px solid rgba(215, 255, 243, 0.46);
    border-radius: 8px;
    background: rgba(18, 23, 24, 0.84);
}

.field-object--flip .field-object__label {
    padding: 7px 10px 8px 12px;
    text-align: right;
}

.field-object__eyebrow {
    color: #b8fff3;
    font-size: 0.64rem;
    text-transform: uppercase;
}

.field-object strong {
    overflow: hidden;
    font-size: 0.92rem;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.field-object p {
    margin: 0;
    color: #d0ddd5;
    font-size: 0.74rem;
}

.runtime-auth {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    padding: 24px;
    pointer-events: none;
}

.runtime-auth__panel {
    width: min(620px, 100%);
    padding: 24px;
    border: 1px solid rgba(184, 255, 243, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(9, 15, 16, 0.96), rgba(6, 9, 10, 0.98)),
        rgba(6, 9, 10, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    pointer-events: auto;
}

.runtime-auth__eyebrow {
    margin: 0 0 10px;
    color: #b8fff3;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.runtime-auth__title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.runtime-auth__summary {
    margin: 12px 0 0;
    max-width: 52ch;
    color: #d0ddd5;
    line-height: 1.45;
}

.runtime-auth__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.runtime-auth__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(184, 255, 243, 0.4);
    border-radius: 8px;
    background: #b8fff3;
    color: #041013;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.runtime-auth__button--secondary {
    background: transparent;
    color: #eefaf8;
}

.runtime-auth__details {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 8px 14px;
    margin: 20px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid rgba(184, 255, 243, 0.14);
}

.runtime-auth__details dt {
    color: #b8fff3;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.runtime-auth__details dd {
    margin: 0;
    color: #d0ddd5;
}

.context-panel {
    position: fixed;
    top: 156px;
    bottom: 132px;
    z-index: 10;
    width: min(320px, calc(50vw - 72px));
    overflow: hidden;
    display: block;
}

.context-panel--left {
    left: 18px;
}

.context-panel--right {
    right: 18px;
}

body.is-left-rail-collapsed .context-panel--left,
body.is-right-rail-collapsed .context-panel--right {
    bottom: auto;
    height: 34px;
}

body.is-left-rail-collapsed .context-panel--left .surface-stack__body,
body.is-right-rail-collapsed .context-panel--right .surface-stack__body {
    display: none;
}

.social-detail {
    display: grid;
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid rgba(215, 255, 243, 0.18);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.4);
}

.social-detail__title {
    margin: 0;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
}

.social-detail__summary {
    margin: 0;
    color: #d0ddd5;
    font-size: 0.78rem;
    line-height: 1.35;
}

.runtime-social__item-button {
    display: grid;
    width: 100%;
    gap: 2px;
    padding: 9px 10px;
    border: 1px solid rgba(215, 255, 243, 0.18);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.82);
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.runtime-social__item-button:disabled,
.runtime-social__item-button[aria-disabled="true"] {
    opacity: 0.58;
    cursor: not-allowed;
}

.runtime-social__item-button strong {
    color: #ffffff;
    font-size: 0.84rem;
}

.runtime-social__item-button span {
    color: #d0ddd5;
    font-size: 0.72rem;
    line-height: 1.3;
}

.runtime-social__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
}

.runtime-social__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(215, 255, 243, 0.24);
    border-radius: 8px;
    background: rgba(36, 48, 54, 0.74);
    color: #d7fff3;
    cursor: pointer;
    font: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

.runtime-social__action--primary {
    background: #d7fff3;
    color: #10201d;
}

.runtime-social__messages {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.runtime-social__messages li {
    display: grid;
    gap: 4px;
    padding: 8px 10px;
    border: 1px solid rgba(215, 255, 243, 0.16);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.58);
}

.runtime-social__messages strong {
    color: #ffffff;
    font-size: 0.76rem;
}

.runtime-social__messages p {
    margin: 0;
    color: #d0ddd5;
    font-size: 0.76rem;
    line-height: 1.35;
}

.runtime-social__reply {
    display: grid;
    gap: 8px;
}

.runtime-social__reply label {
    display: grid;
    gap: 4px;
}

.runtime-social__reply textarea {
    width: 100%;
    min-height: 72px;
    padding: 8px 9px;
    border: 1px solid rgba(215, 255, 243, 0.22);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.82);
    color: #ffffff;
    font: inherit;
    font-size: 0.84rem;
    resize: vertical;
}

.runtime-social__reply button {
    justify-self: start;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(215, 255, 243, 0.24);
    border-radius: 8px;
    background: #d7fff3;
    color: #10201d;
    cursor: pointer;
    font: inherit;
    font-size: 0.76rem;
    font-weight: 800;
}

.runtime-social__reply p {
    margin: 0;
    color: #d0ddd5;
    font-size: 0.74rem;
}

.top-dock,
.carry-dock {
    position: absolute;
    right: 10px;
    left: 10px;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    min-height: var(--runtime-dock-height);
    padding: 6px 8px;
    border: 1px solid rgba(215, 255, 243, 0.26);
    border-radius: 12px;
    background: rgba(18, 23, 24, 0.86);
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.dock-menu {
    display: none;
}

.top-dock {
    top: var(--runtime-dock-gap);
}

.carry-dock {
    bottom: var(--runtime-dock-gap);
}

.dock-blank {
    flex: 0 0 auto;
    width: 88px;
    min-height: 34px;
    border: 1px solid rgba(215, 255, 243, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(215, 255, 243, 0.1), rgba(215, 255, 243, 0.02)),
        rgba(36, 48, 54, 0.44);
}

.carry-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 18;
    width: min(980px, calc(100vw - 44px));
    height: min(70vh, 620px);
    border: 1px solid rgba(215, 255, 243, 0.3);
    border-radius: 8px;
    background: rgba(18, 23, 24, 0.9);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
    transform: translate(-50%, -50%);
}

.carry-panel[hidden] {
    display: none;
}

.surface-stack {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.surface-stack[hidden] {
    display: none;
}

.surface-stack--carry {
    position: absolute;
    top: calc(var(--runtime-dock-gap) * 2 + var(--runtime-dock-height));
    left: 50%;
    z-index: 17;
    width: min(980px, calc(100vw - 44px));
    height: auto;
    bottom: calc(var(--runtime-dock-gap) * 2 + var(--runtime-dock-height));
    transform: translateX(-50%);
}

.surface-stack--rail {
    position: relative;
    z-index: 10;
}

.finding-overlay {
    position: absolute;
    top: calc(var(--runtime-dock-gap) * 2 + var(--runtime-dock-height));
    right: 12px;
    bottom: calc(var(--runtime-dock-gap) * 2 + var(--runtime-dock-height));
    left: 12px;
    z-index: 18;
    pointer-events: none;
}

.finding-overlay[hidden] {
    display: none;
}

.finding-overlay__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: auto;
}

.surface-stack__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1300px;
    touch-action: auto;
}

.surface-stack__surface {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(215, 255, 243, 0.3);
    border-radius: 10px;
    background: rgba(18, 23, 24, 0.92);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform-origin: center;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
    will-change: opacity, transform;
}

.surface-stack__surface--invalid {
    border-color: rgba(255, 176, 176, 0.42);
}

.surface-stack__surface--invalid .surface-stack__body {
    color: #ffd9d9;
}

.surface-stack--rail .surface-stack__surface {
    border-color: rgba(215, 255, 243, 0.24);
    border-radius: 8px;
    background: rgba(18, 23, 24, 0.86);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.surface-stack--rail .surface-stack__bar {
    min-height: 34px;
    padding: 0 9px 0 11px;
}

.surface-stack--rail .surface-stack__bar strong {
    font-size: 0.78rem;
    text-transform: uppercase;
}

.surface-stack--rail .surface-stack__body {
    padding: 10px;
}

.surface-stack--rail .runtime-social__item-button {
    padding: 7px 8px;
}

.surface-stack--rail .surface-stack__empty,
.surface-stack--rail .social-detail__summary,
.surface-stack--rail .surface-stack__list span {
    font-size: 0.74rem;
}

.surface-stack--rail .surface-stack__list {
    gap: 6px;
}

.surface-stack__surface.is-focus {
    pointer-events: auto;
}

.surface-stack__surface--detached-finding {
    min-width: 220px;
    min-height: 124px;
    resize: none;
    transition:
        border-color 120ms ease,
        box-shadow 120ms ease;
}

.surface-stack__surface--detached-finding.is-focus {
    border-color: rgba(215, 255, 243, 0.48);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.surface-stack__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 8px 0 12px;
    border-bottom: 1px solid rgba(215, 255, 243, 0.18);
    cursor: grab;
    touch-action: none;
    user-select: none;
}

.surface-stack__bar:active {
    cursor: grabbing;
}

.surface-stack__close {
    margin-left: auto;
    min-width: 56px;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(215, 255, 243, 0.24);
    border-radius: 8px;
    background: rgba(36, 48, 54, 0.74);
    color: #d7fff3;
    cursor: pointer;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.surface-stack__actions {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
}

.surface-stack__actions button {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.72rem;
    line-height: 1;
}

.surface-stack__actions p {
    margin: 0;
    color: #d0ddd5;
    font-size: 0.72rem;
    white-space: nowrap;
}

.surface-stack__rail-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 28px;
    margin-left: auto;
    padding: 0 10px;
    border: 1px solid rgba(215, 255, 243, 0.24);
    border-radius: 8px;
    background: rgba(36, 48, 54, 0.74);
    color: #d7fff3;
    cursor: pointer;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.surface-stack__bar strong {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 0.86rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.surface-stack__body {
    min-height: 0;
    overflow: auto;
    padding: 12px;
    touch-action: auto;
}

.surface-stack__surface--detached-finding .surface-stack__body {
    padding: 10px;
}

.finding-surface__resize {
    position: absolute;
    right: 7px;
    bottom: 7px;
    z-index: 2;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 1px solid rgba(215, 255, 243, 0.34);
    border-radius: 4px;
    background:
        linear-gradient(135deg, transparent 0 46%, rgba(215, 255, 243, 0.82) 48% 54%, transparent 56%),
        rgba(18, 23, 24, 0.82);
    cursor: nwse-resize;
    touch-action: none;
}

.surface-stack__body > * {
    max-width: 100%;
}

.surface-stack__body pre {
    overflow: auto;
    margin: 0;
    color: #d0ddd5;
    font-size: 0.74rem;
    line-height: 1.35;
    white-space: pre-wrap;
}

.surface-stack__empty {
    margin: 0;
    color: #d0ddd5;
    font-size: 0.86rem;
    line-height: 1.45;
}

.surface-stack__list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.surface-stack__list li {
    display: grid;
    gap: 3px;
    padding: 10px;
    border: 1px solid rgba(215, 255, 243, 0.16);
    border-radius: 8px;
    background: rgba(36, 48, 54, 0.54);
}

.surface-stack__list strong {
    color: #ffffff;
    font-size: 0.9rem;
}

.surface-stack__list span {
    color: #c4d2ce;
    font-size: 0.78rem;
    line-height: 1.35;
}

.carry-panel__bar {
    display: flex;
    align-items: center;
    min-height: 36px;
    gap: 8px;
    padding: 0 6px 0 12px;
    border-bottom: 1px solid rgba(215, 255, 243, 0.18);
}

.carry-panel__bar strong {
    flex: 1;
    color: #ffffff;
    font-size: 0.86rem;
}

.carry-panel__bar a,
.carry-panel__bar button {
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid rgba(215, 255, 243, 0.24);
    border-radius: 8px;
    background: rgba(36, 48, 54, 0.74);
    color: #d7fff3;
    cursor: pointer;
    font: inherit;
    font-size: 0.74rem;
    font-weight: 700;
}

.carry-panel__body {
    height: calc(100% - 36px);
    padding: 10px;
    min-height: 0;
    overflow: auto;
}

.carry-panel--body-hidden {
    height: auto;
    min-height: 0;
}

.carry-panel--body-hidden .carry-panel__body {
    display: none;
}

.runtime-panel-fragment,
.runtime-social,
.runtime-time {
    height: 100%;
}

.carry-panel__text {
    margin: 0;
    color: #d0ddd5;
    font-size: 0.78rem;
    line-height: 1.35;
}

.settings-panel {
    display: grid;
    gap: 10px;
    height: 100%;
}

.settings-panel__row {
    padding: 12px;
    border: 1px solid rgba(215, 255, 243, 0.18);
    border-radius: 8px;
    background: rgba(36, 48, 54, 0.5);
}

.settings-panel__row--stacked {
    display: grid;
    gap: 8px;
}

.settings-panel strong,
.settings-panel p {
    margin: 0;
}

.settings-panel strong {
    color: #ffffff;
    font-size: 0.84rem;
    text-transform: uppercase;
}

.settings-panel p {
    color: #d0ddd5;
    font-size: 0.78rem;
    line-height: 1.35;
}

.settings-panel__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.settings-panel__option {
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid rgba(215, 255, 243, 0.28);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.82);
    color: #d0ddd5;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
}

.settings-panel__option[aria-pressed="true"] {
    background: #d7fff3;
    color: #10201d;
}

.runtime-social {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    gap: 10px;
    overflow: hidden;
}

.runtime-social__header,
.runtime-social__section,
.runtime-social__form {
    border: 1px solid rgba(215, 255, 243, 0.18);
    border-radius: 8px;
    background: rgba(36, 48, 54, 0.5);
}

.runtime-social__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
}

.runtime-social__header p,
.runtime-social__header strong,
.runtime-social__header span,
.runtime-social__section h2,
.runtime-social__section p,
.runtime-social__form h2,
.runtime-social__form p {
    margin: 0;
}

.runtime-social__header p,
.runtime-social__header span,
.runtime-social__empty,
.runtime-social__list span,
.runtime-social__form span,
.runtime-social__form p {
    color: #d0ddd5;
    font-size: 0.78rem;
}

.runtime-social__header strong,
.runtime-social__section h2,
.runtime-social__form h2 {
    color: #ffffff;
}

.runtime-social__section {
    min-height: 0;
    overflow: auto;
    padding: 10px 12px;
}

.runtime-social__section h2,
.runtime-social__form h2 {
    font-size: 0.82rem;
    text-transform: uppercase;
}

.runtime-social__list,
.runtime-social__presence {
    display: grid;
    gap: 7px;
    margin: 9px 0 0;
    padding: 0;
    list-style: none;
}

.runtime-social__list li,
.runtime-social__presence li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.runtime-social__list strong,
.runtime-social__presence strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 0.84rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.runtime-social__presence span {
    color: #b8fff3;
    font-size: 0.82rem;
    font-weight: 700;
}

.runtime-social__menu {
    display: grid;
    gap: 8px;
    margin: 9px 0 0;
    padding: 0;
    list-style: none;
}

.runtime-social__menu button {
    width: 100%;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid rgba(215, 255, 243, 0.22);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.82);
    color: #d0ddd5;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: left;
}

.runtime-social__item-button[aria-pressed="true"] {
    background: rgba(184, 255, 243, 0.14);
    border-color: rgba(184, 255, 243, 0.34);
    color: #eefaf8;
    box-shadow: inset 0 0 0 1px rgba(184, 255, 243, 0.08);
}

.runtime-social__menu button[aria-pressed="true"] {
    background: rgba(184, 255, 243, 0.14);
    border-color: rgba(184, 255, 243, 0.34);
    color: #eefaf8;
    box-shadow: inset 0 0 0 1px rgba(184, 255, 243, 0.08);
}

.runtime-social__discovery {
    display: grid;
    gap: 8px;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid rgba(215, 255, 243, 0.16);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.48);
}

.runtime-social__discovery h2 {
    margin: 0;
    color: #ffffff;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.runtime-social__depth-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}

.runtime-social__depth-options button {
    display: grid;
    gap: 3px;
    min-width: 0;
    min-height: 48px;
    padding: 7px 8px;
    border: 1px solid rgba(215, 255, 243, 0.2);
    border-radius: 8px;
    background: rgba(20, 29, 32, 0.78);
    color: #d0ddd5;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.runtime-social__depth-options button[aria-pressed="true"] {
    background: rgba(184, 255, 243, 0.16);
    border-color: rgba(184, 255, 243, 0.42);
    color: #eefaf8;
}

.runtime-social__depth-options strong,
.runtime-social__depth-options span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.runtime-social__depth-options strong {
    font-size: 0.8rem;
}

.runtime-social__depth-options span {
    color: #d0ddd5;
    font-size: 0.72rem;
}

.runtime-social__grouped-list {
    display: grid;
    gap: 10px;
    min-height: 0;
}

.runtime-social__object-group {
    display: grid;
    gap: 7px;
    min-height: 0;
    padding: 9px;
    border: 1px solid rgba(215, 255, 243, 0.14);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.32);
}

.runtime-social__object-group h2 {
    margin: 0;
    color: #b8fff3;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.runtime-social__form {
    display: grid;
    gap: 8px;
    padding: 10px 12px;
}

.runtime-social__form label {
    display: grid;
    gap: 4px;
}

.runtime-social__form input,
.runtime-social__form textarea {
    width: 100%;
    border: 1px solid rgba(215, 255, 243, 0.22);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.82);
    color: #ffffff;
    font: inherit;
    font-size: 0.84rem;
    padding: 8px 9px;
}

.runtime-social__form textarea {
    min-height: 70px;
    resize: vertical;
}

.runtime-social__form button {
    justify-self: start;
    min-height: 32px;
    padding: 6px 11px;
    border: 1px solid rgba(215, 255, 243, 0.3);
    border-radius: 8px;
    background: #d7fff3;
    color: #10201d;
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
}

.field-controls {
    display: grid;
    gap: 10px;
    height: 100%;
}

.field-controls__summary {
    margin: 0;
}

.field-controls__summary {
    color: #d0ddd5;
    font-size: 0.78rem;
    line-height: 1.35;
}

.field-controls__group {
    display: grid;
    gap: 10px;
    min-height: 0;
}

.field-controls__panel {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(215, 255, 243, 0.16);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.48);
}

.field-controls__panel strong {
    color: #ffffff;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.field-controls__panel p {
    margin: 0;
    color: #d0ddd5;
    font-size: 0.75rem;
    line-height: 1.35;
}

.field-controls__radius-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.field-controls__radius-option {
    display: grid;
    gap: 3px;
    min-width: 0;
    min-height: 48px;
    padding: 7px 8px;
    border: 1px solid rgba(215, 255, 243, 0.2);
    border-radius: 8px;
    background: rgba(20, 29, 32, 0.78);
    color: #d0ddd5;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.field-controls__radius-option[aria-pressed="true"] {
    background: rgba(184, 255, 243, 0.16);
    border-color: rgba(184, 255, 243, 0.42);
    color: #eefaf8;
}

.field-controls__radius-option strong,
.field-controls__radius-option span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.field-controls__radius-option strong {
    font-size: 0.8rem;
}

.field-controls__radius-option span {
    color: inherit;
    font-size: 0.72rem;
}

.field-controls__category-list {
    display: grid;
    gap: 6px;
    max-height: 35vh;
    overflow: auto;
    padding-right: 2px;
}

.field-controls__category {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border: 1px solid rgba(215, 255, 243, 0.14);
    border-radius: 8px;
    background: rgba(20, 29, 32, 0.6);
    color: #d0ddd5;
}

.field-controls__category input {
    flex: 0 0 auto;
}

.field-controls__category span {
    overflow: hidden;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.field-controls__placeholder {
    color: #d0ddd5;
    font-size: 0.78rem;
    line-height: 1.35;
}

.runtime-time {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 10px;
    overflow: hidden;
}

.runtime-time__toolbar {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(215, 255, 243, 0.18);
}

.runtime-time__date-controls,
.runtime-time__views,
.runtime-time__form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.runtime-time__toolbar button,
.runtime-time__form-actions button {
    min-height: 30px;
    padding: 5px 9px;
    border: 1px solid rgba(215, 255, 243, 0.24);
    border-radius: 6px;
    background: rgba(36, 48, 54, 0.74);
    color: #eefaf8;
    cursor: pointer;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
}

.runtime-time__toolbar button.is-active {
    border-color: #b8fff3;
    background: #b8fff3;
    color: #07100e;
}

.runtime-time__workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    min-height: 0;
    overflow: hidden;
}

.runtime-time__canvas,
.runtime-time__editor {
    min-height: 0;
    overflow: auto;
}

.runtime-time__canvas {
    padding: 8px;
}

.runtime-time__editor {
    padding: 10px;
    border-left: 1px solid rgba(215, 255, 243, 0.18);
    background: rgba(8, 12, 13, 0.54);
}

.runtime-time__editor > section {
    display: grid;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(215, 255, 243, 0.12);
}

.runtime-time__editor h2 {
    margin: 0;
    font-size: 0.84rem;
}

.runtime-time__object-form {
    display: grid;
    gap: 8px;
}

.runtime-time__object-form label {
    display: grid;
    gap: 3px;
    color: #d0ddd5;
    font-size: 0.7rem;
}

.runtime-time__object-form input,
.runtime-time__object-form select,
.runtime-time__object-form textarea,
.runtime-time__calendar-form input,
.runtime-time__calendar-form textarea {
    width: 100%;
    min-height: 32px;
    padding: 5px 7px;
    border: 1px solid rgba(215, 255, 243, 0.2);
    border-radius: 6px;
    background: #080c0d;
    color: #eefaf8;
    font: inherit;
}

.runtime-time__object-form input[type="checkbox"] {
    width: auto;
    min-height: auto;
    justify-self: start;
}

.runtime-time__object-form :disabled,
.runtime-time__calendar-form :disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

.runtime-time__object-form p {
    margin: 0;
    color: #d0ddd5;
    font-size: 0.72rem;
}

.runtime-time__calendar-list,
.runtime-time__calendar-form {
    display: grid;
    gap: 8px;
}

.runtime-time__calendar-form {
    padding: 8px;
    border: 1px solid rgba(215, 255, 243, 0.14);
    border-radius: 6px;
}

.runtime-time__calendar-form p {
    margin: 0;
    color: #d0ddd5;
    font-size: 0.72rem;
}

.runtime-time__day {
    display: grid;
}

.runtime-time__hour {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 46px;
    border-top: 1px solid rgba(215, 255, 243, 0.12);
}

.runtime-time__hour > time {
    padding: 6px;
    color: #8fa7a0;
    font-size: 0.68rem;
}

.runtime-time__hour-events,
.runtime-time__task-strip,
.runtime-time__agenda,
.runtime-time__tasks {
    display: grid;
    align-content: start;
    gap: 5px;
    padding: 4px;
}

.runtime-time__task-strip {
    margin-bottom: 8px;
    border: 1px solid rgba(255, 208, 112, 0.28);
    background: rgba(57, 45, 18, 0.34);
}

.runtime-time__week,
.runtime-time__month {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    min-width: 630px;
}

.runtime-time__date-cell {
    min-height: 130px;
    padding: 6px;
    border: 1px solid rgba(215, 255, 243, 0.12);
    background: rgba(8, 12, 13, 0.34);
}

.runtime-time__month .runtime-time__date-cell {
    min-height: 104px;
}

.runtime-time__date-cell.is-outside {
    opacity: 0.46;
}

.runtime-time__date-cell h3 {
    margin: 0 0 6px;
    color: #d0ddd5;
    font-size: 0.7rem;
}

.runtime-time__object {
    display: grid;
    width: 100%;
    gap: 2px;
    padding: 5px 7px;
    border: 0;
    border-left: 4px solid var(--calendar-color, #b8fff3);
    border-radius: 4px;
    background: rgba(36, 48, 54, 0.84);
    color: #eefaf8;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.runtime-time__object strong,
.runtime-time__object span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.runtime-time__object strong {
    font-size: 0.74rem;
}

.runtime-time__object span {
    color: #b6c7c2;
    font-size: 0.64rem;
}

.runtime-time__tasks > div {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 6px;
}

.find-composer {
    display: grid;
    gap: 10px;
    align-content: start;
}

.find-composer__filters {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(215, 255, 243, 0.18);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.38);
}

.find-composer__filters legend {
    padding: 0;
    color: #b8fff3;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.find-composer__filters label {
    display: grid;
    gap: 4px;
    color: #eefaf8;
    font-size: 0.74rem;
}

.find-composer__filters input,
.find-composer__filters select {
    width: 100%;
    min-height: 36px;
    padding: 6px 8px;
    border: 1px solid rgba(215, 255, 243, 0.18);
    border-radius: 6px;
    background: rgba(6, 9, 10, 0.94);
    color: #eefaf8;
}

.find-composer__meta {
    display: grid;
    gap: 8px;
}

.find-composer__form {
    display: grid;
    gap: 10px;
    align-content: start;
}

.find-composer__scope {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 8px;
    border: 1px solid rgba(215, 255, 243, 0.18);
    border-radius: 8px;
}

.find-composer__scope legend {
    padding: 0 4px;
    color: #b8fff3;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.find-composer__scope-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.find-composer__scope-options label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #eefaf8;
    font-size: 0.76rem;
}

.find-composer__scope-options label.is-disabled {
    opacity: 0.48;
}

.find-composer__scope-status {
    margin: 0;
    color: #d0ddd5;
    font-size: 0.72rem;
}

.find-composer__overlay-controls {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
    align-items: center;
    gap: 6px;
}

.find-composer__overlay-controls button {
    min-height: 30px;
    padding: 5px 8px;
    border: 1px solid rgba(215, 255, 243, 0.24);
    border-radius: 6px;
    background: rgba(36, 48, 54, 0.74);
    color: #eefaf8;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
}

.find-composer__overlay-controls button:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

.find-composer__shown {
    min-width: 0;
    color: #d0ddd5;
    font-size: 0.72rem;
    text-align: center;
}

.finding-surface__image {
    display: block;
    width: 100%;
    max-height: 12rem;
    margin-block-end: 0.75rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.map-surface {
    display: grid;
    gap: 0.75rem;
}

.map-surface__title {
    margin: 0;
}

.map-surface__frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 2;
    min-height: 18rem;
    border: 1px solid var(--line, #c8c8c8);
    border-radius: 0.75rem;
    background: #e7e3da;
}

.map-surface__canvas {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.map-surface__tile {
    position: absolute;
    display: block;
    max-width: none;
    object-fit: fill;
}

.map-surface__marker {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 1.2rem;
    height: 1.2rem;
    border: 0.2rem solid #fff;
    border-radius: 50% 50% 50% 0;
    background: #bb2e2e;
    box-shadow: 0 0.15rem 0.45rem rgb(0 0 0 / 35%);
    transform: translate(-50%, -100%) rotate(-45deg);
}

.map-surface__marker-label {
    position: absolute;
    top: -0.45rem;
    left: 1.35rem;
    width: max-content;
    max-width: 14rem;
    padding: 0.25rem 0.4rem;
    border-radius: 0.3rem;
    background: rgb(255 255 255 / 94%);
    color: #171717;
    font-size: 0.75rem;
    line-height: 1.2;
    box-shadow: 0 0.1rem 0.3rem rgb(0 0 0 / 22%);
    transform: rotate(45deg);
}

.map-surface__attribution {
    position: absolute;
    right: 0.25rem;
    bottom: 0.25rem;
    z-index: 3;
    padding: 0.15rem 0.3rem;
    border-radius: 0.2rem;
    background: rgb(255 255 255 / 88%);
    color: #222;
    font-size: 0.65rem;
}

.map-surface__unavailable {
    display: grid;
    min-height: 12rem;
    place-items: center;
    padding: 1rem;
    border: 1px dashed var(--line, #c8c8c8);
    border-radius: 0.75rem;
    text-align: center;
}

.runtime-time__header,
.runtime-time__section,
.runtime-time__form {
    border: 1px solid rgba(215, 255, 243, 0.18);
    border-radius: 8px;
    background: rgba(36, 48, 54, 0.5);
}

.runtime-time__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
}

.runtime-time__header p,
.runtime-time__header strong,
.runtime-time__header span,
.runtime-time__section h2,
.runtime-time__section p,
.runtime-time__form h2,
.runtime-time__form p {
    margin: 0;
}

.runtime-time__header p,
.runtime-time__header span,
.runtime-time__empty,
.runtime-time__list span,
.runtime-time__form span,
.runtime-time__form p {
    color: #d0ddd5;
    font-size: 0.78rem;
}

.runtime-time__header strong,
.runtime-time__section h2,
.runtime-time__form h2 {
    color: #ffffff;
}

.runtime-time__section {
    min-height: 0;
    overflow: auto;
    padding: 10px 12px;
}

.runtime-time__section h2,
.runtime-time__form h2 {
    font-size: 0.82rem;
    text-transform: uppercase;
}

.runtime-time__list {
    display: grid;
    gap: 7px;
    margin: 9px 0 0;
    padding: 0;
    list-style: none;
}

.runtime-time__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.runtime-time__list strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 0.84rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.runtime-time__form {
    display: grid;
    gap: 8px;
    padding: 10px 12px;
}

.runtime-time__form label {
    display: grid;
    gap: 4px;
}

.runtime-time__form input {
    width: 100%;
    border: 1px solid rgba(215, 255, 243, 0.22);
    border-radius: 8px;
    background: rgba(8, 12, 13, 0.82);
    color: #ffffff;
    font: inherit;
    font-size: 0.84rem;
    padding: 8px 9px;
}

.runtime-time__form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 32px;
    padding: 6px 11px;
    border: 1px solid rgba(215, 255, 243, 0.3);
    border-radius: 8px;
    background: #d7fff3;
    color: #10201d;
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.top-dock::-webkit-scrollbar,
.carry-dock::-webkit-scrollbar {
    display: none;
}

.carry-object {
    flex: 0 0 auto;
    min-width: 88px;
    min-height: 34px;
    padding: 5px 10px;
    border: 1px solid rgba(215, 255, 243, 0.28);
    border-radius: 8px;
    background: rgba(36, 48, 54, 0.84);
    color: #eefaf8;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
}

.carry-object.is-active {
    border-color: rgba(215, 255, 243, 0.76);
    background: #d7fff3;
    color: #10201d;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

@media (min-width: 761px) and (max-width: 900px) {
    .context-panel {
        top: 86px;
        bottom: 96px;
        width: min(180px, calc(50vw - 20px));
    }

    .context-panel--left {
        left: 10px;
    }

    .context-panel--right {
        right: 10px;
    }

    .top-dock {
        top: 6px;
        justify-content: flex-start;
    }

    .carry-dock {
        bottom: 6px;
        justify-content: flex-start;
    }

    .dock-blank,
    .carry-object {
        min-width: 72px;
    }

    .carry-panel {
        width: calc(100vw - 440px);
        height: min(56vh, 460px);
    }

    .surface-stack--carry {
        width: calc(100vw - 440px);
        height: min(60vh, 500px);
    }

    .runtime-social__depth-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .runtime-shell {
        --runtime-dock-gap: 4px;
        --runtime-dock-height: 38px;
        --runtime-rail-header-height: 34px;
        --runtime-carry-clearance: 28px;
    }

    .context-panel {
        top: calc(var(--runtime-dock-gap) * 2 + var(--runtime-dock-height));
        bottom: calc(var(--runtime-dock-gap) * 2 + var(--runtime-dock-height));
        width: calc(50vw - 8px);
        z-index: 10;
        overflow: hidden;
    }

    .context-panel--left {
        left: 4px;
    }

    .context-panel--right {
        right: 4px;
    }

    .runtime-time__toolbar {
        grid-template-columns: 1fr;
    }

    .runtime-time__workspace {
        grid-template-columns: 1fr;
        overflow: auto;
    }

    .runtime-time__canvas,
    .runtime-time__editor {
        overflow: visible;
    }

    .runtime-time__editor {
        border-top: 1px solid rgba(215, 255, 243, 0.18);
        border-left: 0;
    }

    .top-dock,
    .carry-dock {
        right: 6px;
        left: 6px;
        padding: 4px 6px;
        border-radius: 10px;
        gap: 6px;
    }

    .top-dock {
        justify-content: flex-start;
    }

    .dock-blank,
    .carry-object {
        min-width: 64px;
        min-height: 30px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .surface-stack--carry {
        z-index: 17;
        top: calc(var(--runtime-dock-gap) * 2 + var(--runtime-dock-height) + var(--runtime-rail-header-height) + var(--runtime-carry-clearance));
        bottom: calc(var(--runtime-dock-gap) * 2 + var(--runtime-dock-height) + var(--runtime-carry-clearance));
        width: calc(100vw - 12px);
    }

    .finding-overlay {
        top: calc(var(--runtime-dock-gap) * 2 + var(--runtime-dock-height) + var(--runtime-rail-header-height));
        right: 6px;
        bottom: calc(var(--runtime-dock-gap) * 2 + var(--runtime-dock-height));
        left: 6px;
    }

    .surface-stack--rail {
        width: calc((100vw - 16px) / 2);
    }

    .carry-panel {
        z-index: 20;
    }

    .surface-stack__surface {
        border-radius: 8px;
    }

    .surface-stack__bar {
        min-height: 32px;
        padding: 0 6px 0 8px;
    }

    .surface-stack__bar strong {
        font-size: 0.8rem;
    }

    .surface-stack__body {
        padding: 10px;
    }

    .surface-stack__close {
        min-width: 24px;
        min-height: 24px;
        border-radius: 7px;
        font-size: 0.94rem;
    }
}
