:root {
    --ink: #17211f;
    --muted: #66736e;
    --paper: #f5f3ed;
    --line: #d6ddd5;
    --accent: #e86d4f;
    --shell-bg: radial-gradient(circle at 85% 12%, #f5c9a5 0 10%, transparent 28%), linear-gradient(135deg, #e5eee5, #f8f1e6);
    --topbar-bg: #f8f6efb8;
    --topbar-border: #ffffff80;
    --search-bg: #fff9;
    --tile-bg: #ffffff9c;
    --tile-border: #ffffff;
    --tile-hover-bg: #ffffff;
    --window-bar-bg: #fff9;
    --dock-bg: #fff8;
    --dock-border: #ffffffcc;
    --dock-btn-bg: #17211f;
    --dock-btn-color: #f8f4e9;
    --shadow: 0 22px 55px #24342c1f;
    font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
    color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
    :root {
        --ink: #e8f0ec;
        --muted: #95a59f;
        --paper: #1b2522;
        --line: #2e3d38;
        --accent: #f07d60;
        --shell-bg: radial-gradient(circle at 85% 12%, #3d2b24 0 10%, transparent 28%), linear-gradient(135deg, #111715, #192320);
        --topbar-bg: #16201db8;
        --topbar-border: #2e3d3880;
        --search-bg: #1b2623cc;
        --tile-bg: #1c27249c;
        --tile-border: #2c3c36;
        --tile-hover-bg: #24332f;
        --window-bar-bg: #17211eb8;
        --dock-bg: #16201ecc;
        --dock-border: #2c3d37;
        --dock-btn-bg: #22302c;
        --dock-btn-color: #e8f0ec;
        --shadow: 0 22px 55px #0000004d;
    }
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink)
}

button,
input {
    font: inherit;
    color: inherit
}

.launcher-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--shell-bg);
    overflow: hidden
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    background: var(--shell-bg)
}

.loader-mark {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 34px
}

.loader-mark i {
    display: block;
    width: 8px;
    height: 18px;
    border-radius: 3px;
    background: var(--ink);
    animation: loader-rise .8s ease-in-out infinite alternate
}

.loader-mark i:nth-child(2) {
    height: 28px;
    background: var(--accent);
    animation-delay: -.55s
}

.loader-mark i:nth-child(3) {
    height: 22px;
    animation-delay: -.3s
}

.loader-fade-leave-active {
    transition: opacity .25s ease
}

.loader-fade-leave-to {
    opacity: 0
}

@keyframes loader-rise {
    from { transform: scaleY(.45); opacity: .45 }
    to { transform: scaleY(1); opacity: 1 }
}

@media (prefers-reduced-motion: reduce) {
    .loader-mark i {
        animation: none
    }
}

.topbar {
    order: 0;
    height: 64px;
    padding: 0 28px;
    padding-left: max(28px, env(safe-area-inset-left));
    padding-right: max(28px, env(safe-area-inset-right));
    display: flex;
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid var(--topbar-border);
    background: var(--topbar-bg);
    backdrop-filter: blur(18px)
}

.launcher-prompt {
    display: flex;
    align-items: center;
    width: min(560px, calc(100vw - 40px));
    min-height: 52px;
    padding: 7px 8px 7px 16px;
    border: 1px solid var(--topbar-border);
    border-radius: 18px;
    background: color-mix(in srgb, var(--topbar-bg) 92%, transparent);
    box-shadow: 0 14px 35px #24342c24, inset 0 1px #ffffff40;
    backdrop-filter: blur(20px) saturate(140%)
}

.launcher-footer {
    position: fixed;
    right: 0;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.launcher-footer > * {
    pointer-events: auto;
}

.session-badge {
    position: fixed;
    bottom: max(18px, env(safe-area-inset-bottom));
    left: max(20px, env(safe-area-inset-left));
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: min(220px, calc(100vw - 40px));
    min-height: 30px;
    padding: 5px 11px;
    overflow: hidden;
    border: 1px solid var(--topbar-border);
    border-radius: 8px;
    background: color-mix(in srgb, var(--topbar-bg) 88%, transparent);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(16px) saturate(130%);
}

.session-badge-mark {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.prompt-mark {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 19px;
    line-height: 1
}

.launcher-prompt input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink)
}

.launcher-prompt input::placeholder {
    color: var(--muted)
}

.launcher-prompt button {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 12px;
    background: var(--ink);
    color: var(--paper);
    cursor: pointer
}

.launcher-prompt button:disabled {
    opacity: .35;
    cursor: default
}

.launcher-prompt svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    letter-spacing: -.03em
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    background: var(--ink);
    color: #fff;
    border-radius: 8px;
    font-size: 13px
}

.crumb {
    color: var(--muted);
    font-weight: 500
}

.workspace-id {
    max-width: 180px;
    overflow: hidden;
    padding: 4px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap
}

.search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(290px, 42vw);
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--search-bg)
}

.search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 13px
}

.topbar-action {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--search-bg);
    color: var(--muted);
    cursor: pointer
}

.topbar-action:hover {
    color: var(--ink);
    border-color: var(--muted)
}

.topbar-action:disabled {
    opacity: .45;
    cursor: wait
}

.topbar-action svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.language-picker select {
    padding: 8px 7px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--ink);
    background: var(--search-bg);
    font-size: 11px;
    font-weight: 700
}

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

.clock {
    font: 12px ui-monospace, monospace;
    color: var(--muted)
}

.desktop {
    position: relative;
    min-height: calc(100vh);
    padding: clamp(54px, 9vw, 112px) clamp(24px, 8vw, 120px)
}

.desktop-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.scout-desktop {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    z-index: 0
}

.workspace-browser {
    width: min(900px, calc(100% - 56px));
    margin: 22px auto 110px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--tile-bg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px)
}

.browser-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 12px;
    border-bottom: 1px solid var(--line);
    background: var(--topbar-bg)
}

.browser-toolbar code {
    min-width: 0;
    overflow: hidden;
    color: var(--muted);
    font: 12px ui-monospace, monospace;
    text-overflow: ellipsis;
    white-space: nowrap
}

.breadcrumbs {
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    color: var(--muted);
    font: 12px ui-monospace, monospace;
    white-space: nowrap
}

.breadcrumbs button {
    overflow: hidden;
    max-width: 180px;
    padding: 2px 4px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-overflow: ellipsis
}

.breadcrumbs button:hover {
    color: var(--ink);
    text-decoration: underline
}

.view-switch {
    display: flex;
    flex: 0 0 auto;
    gap: 2px;
    margin-left: auto;
    padding: 2px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--search-bg)
}

.browser-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    margin-left: auto
}

.view-switch button {
    width: 25px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: var(--muted);
    cursor: pointer
}

.view-switch button.selected {
    background: var(--ink);
    color: var(--paper)
}

.browser-button {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--search-bg);
    color: var(--ink);
    cursor: pointer
}

.browser-button svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8
}

.browser-button:disabled {
    cursor: default;
    opacity: .4
}

.file-list {
    list-style: none;
    margin: 0;
    padding: 7px
}

.file-entry {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    width: 100%;
    min-height: 38px;
    padding: 0 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--ink);
    text-align: left;
    cursor: pointer
}

.file-entry:hover {
    background: var(--tile-hover-bg)
}

.file-entry strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.file-entry small,
.browser-message {
    color: var(--muted);
    font: 11px ui-monospace, monospace
}

.file-icon {
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 18px;
    text-align: center
}

.file-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain
}

.file-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 8px
}

.file-grid .file-entry {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    min-height: 112px;
    padding: 14px 9px;
    text-align: center
}

.file-grid .file-icon {
    width: 40px;
    height: 40px;
    font-size: 28px
}

.file-grid .file-icon img {
    width: 40px;
    height: 40px
}

.file-grid .file-entry strong {
    width: 100%
}

.browser-message {
    padding: 24px 18px
}

.browser-error {
    color: #a54037
}

.welcome-copy {
    max-width: 520px
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font: 600 11px ui-monospace, monospace;
    letter-spacing: .16em
}

.welcome-copy h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    letter-spacing: -.06em;
    line-height: 1
}

.welcome-copy p:last-child {
    color: var(--muted)
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
    width: 100%;
    margin-top: 48px
}

.app-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 17px;
    text-align: left;
    border: 1px solid var(--tile-border);
    background: var(--tile-bg);
    border-radius: 12px;
    box-shadow: 0 8px 25px #0000000d;
    cursor: pointer;
    transition: transform .2s, background .2s
}

.app-tile:hover {
    transform: scale(1.05);
    background: var(--tile-hover-bg)
}

.app-tile-new {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    transform: scale(.8);
    transition: opacity .15s, transform .15s;
    cursor: pointer
}

.app-tile:hover .app-tile-new,
.app-tile-new:focus-visible {
    opacity: 1;
    transform: scale(1)
}

.app-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    font-weight: 800
}

.app-icon img,
.dock-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill
}

.app-icon svg,
.dock-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.app-icon svg path:first-child {
    fill: currentColor;
    stroke: none
}

.app-tile strong {
    font-size: 14px
}

.app-tile small {
    color: var(--muted);
    font-size: 12px
}

.empty {
    color: var(--muted)
}

.window {
    position: absolute;
    top: 8%;
    right: 7%;
    width: min(700px, 60vw);
    height: min(570px, 70vh);
    min-width: 280px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    background: color-mix(in srgb, var(--paper) 88%, transparent);
    border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
    border-radius: 10px;
    box-shadow: 0 18px 48px #00000026;
    backdrop-filter: blur(20px) saturate(125%);
    overflow: hidden;
    z-index: 30;
    transition: opacity .2s, transform .2s
}

.window[style] {
    top: 0;
    right: auto
}

.window:not(.active) {
    transform: scale(.985);
    opacity: .9
}

.window.minimized {
    display: none
}

.window.docked-left,
.window.docked-right {
    top: 0;
    bottom: 0;
    width: 50% !important;
    height: auto !important;
    border-radius: 0
}

.window.docked-left {
    left: 0;
    right: auto;
}

.window.docked-right {
    right: 0;
    left: auto;
}

.window-bar {
    display: flex;
    align-items: center;
    height: 36px;
    gap: 12px;
    padding: 0 10px;
    background: color-mix(in srgb, var(--window-bar-bg) 72%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--line) 58%, transparent);
    backdrop-filter: blur(18px) saturate(120%);
    font-size: 12px;
    font-weight: 600;
    cursor: grab;
    user-select: none
}

.window.header-bottom .window-bar {
    order: 1;
    border-top: 1px solid color-mix(in srgb, var(--line) 58%, transparent);
    border-bottom: 0
}

.window.header-bottom .window-body {
    order: 0
}

.window-bar:active {
    cursor: grabbing
}

.window-actions {
    display: flex;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    flex: 0 0 auto
}

.window-actions button {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: var(--muted);
    cursor: pointer;
    font-size: 0;
    color: transparent;
    transition: transform .15s, filter .15s
}

.window-actions button:hover {
    transform: scale(1.18);
    filter: brightness(.9)
}

.window-actions .traffic.close { background: #ef6f61 }
.window-actions .traffic.minimize { background: #6ac8c1 }
.window-actions .traffic.maximize { background: #8e79e8 }
.window-spacer { flex: 1 }

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--muted);
    flex: 0 0 auto
}

.status-dot.ready { background: #4cb782 }

.status-dot.busy {
    background: #e8b34f;
    animation: status-pulse 1.1s ease-in-out infinite
}

@keyframes status-pulse {
    0%, 100% { opacity: 1 }
    50% { opacity: .35 }
}

.window-ext-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 5px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: color .15s, background .15s, border-color .15s;
}

.window-ext-btn:hover {
    color: var(--ink);
    background: color-mix(in srgb, var(--search-bg) 72%, transparent);
    border-color: color-mix(in srgb, var(--line) 70%, transparent);
}

.window-ext-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dock {
    display: flex;
    gap: 6px;
    padding: 7px 8px;
    background: color-mix(in srgb, var(--dock-bg) 84%, transparent);
    border: 1px solid color-mix(in srgb, var(--dock-border) 72%, transparent);
    border-radius: 16px;
    box-shadow: 0 10px 28px #0000001f, inset 0 1px #ffffff30;
    backdrop-filter: blur(20px) saturate(140%)
}

.dock button {
    position: relative;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--dock-btn-color);
    cursor: pointer;
    font-weight: 800;
    font-size: 15px;
    transition: transform .16s ease, background .16s ease, box-shadow .16s ease
}

.dock button:hover {
    background: #17211f12;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px #00000012
}

.dock-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    z-index: 2;
    padding: 5px 8px;
    border: 1px solid #ffffff55;
    border-radius: 6px;
    background: #17211fe8;
    color: #fffdf8;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, 4px);
    transition: opacity .14s ease, transform .14s ease;
}

.dock button:hover .dock-tooltip,
.dock button:focus-visible .dock-tooltip {
    opacity: 1;
    transform: translate(-50%, 0);
}

.dock button.pinned {
    background: #17211f0b;
    box-shadow: 0 3px 8px #0000000d
}

.dock button i {
    position: absolute;
    bottom: 1px;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: transparent;
    transform: translateX(-50%)
}

.dock button i.is-open {
    background: var(--ink);
}

.dock button i.minimized {
    background: var(--ink);
    opacity: .45;
}

.dock button.selected i {
    background: var(--accent);
}

.dock button.selected {
    background: transparent;
    box-shadow: none;
}

.dock-status-dot {
    position: absolute;
    left: 50%;
    bottom: 1px;
    width: 7px;
    height: 7px;
    border: 2px solid var(--dock-bg);
    transform: translateX(-50%);
    box-shadow: none;
}

.dock-status-dot.idle {
    background: #4cb782;
}

.dock-status-dot.busy {
    background: #e8b34f;
    animation: status-pulse 1.1s ease-in-out infinite;
}

.dock-icon {
    display: grid;
    place-items: center;
    height: 100%
}

.dock-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 7px
}

.dock-icon svg {
    width: 22px;
    height: 22px
}

.dock button.selected i {
    background: var(--ink)
}

.dock.drop-target {
    border-color: var(--accent);
    box-shadow: 0 18px 45px #00000030, 0 0 0 5px #e86d4f33, inset 0 1px #fff
}

.window-body {
    position: relative;
    flex: 1;
    min-height: 0
}

.app-loader {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    background: var(--paper)
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: var(--paper)
}

iframe.scout-desktop {
    background: transparent
}

.window-focus-catcher {
    position: absolute;
    inset: 0;
    background: transparent
    /* dim inactive windows here once the look is finalized */
    ;
    pointer-events: none;
}

/* Resize handles */
.resize-handle {
    position: absolute;
    z-index: 10;
    pointer-events: auto;
    touch-action: none;
}
.resize-handle.n { top: 0; left: 8px; right: 8px; height: 6px; cursor: ns-resize; }
.resize-handle.s { bottom: 0; left: 8px; right: 8px; height: 6px; cursor: ns-resize; }
.resize-handle.e { top: 8px; bottom: 8px; right: 0; width: 6px; cursor: ew-resize; }
.resize-handle.w { top: 8px; bottom: 8px; left: 0; width: 6px; cursor: ew-resize; }
.resize-handle.ne { top: 0; right: 0; width: 12px; height: 12px; cursor: nesw-resize; }
.resize-handle.nw { top: 0; left: 0; width: 12px; height: 12px; cursor: nwse-resize; }
.resize-handle.se { bottom: 0; right: 0; width: 12px; height: 12px; cursor: nwse-resize; }
.resize-handle.sw { bottom: 0; left: 0; width: 12px; height: 12px; cursor: nesw-resize; }

@media(max-width:700px) {
    .topbar {
        padding: 0 16px;
        gap: 12px
    }

    .crumb,
    .clock {
        display: none
    }

    .workspace-id {
        display: inline-block;
        max-width: 120px;
    }

    .search {
        width: auto;
        flex: 1
    }

    .desktop {
        padding: 52px 20px 170px
    }

    .launcher-prompt {
        bottom: max(88px, calc(env(safe-area-inset-bottom) + 78px));
        width: min(560px, calc(100vw - 24px));
    }

    .window,
    .window[style],
    .window.docked-left,
    .window.docked-right {
        position: fixed;
        inset: 0;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100dvh !important;
        border: 0;
        border-radius: 0
    }

    .resize-handle {
        display: none;
    }

    .app-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 32px
    }

    .dock {
        gap: 6px;
        padding: 7px 8px;
    }

    .dock button {
        width: 42px;
        height: 42px;
    }

    .dock-icon svg {
        width: 26px;
        height: 26px
    }

    .window-bar {
        height: 48px;
    }

    .window-actions {
        gap: 8px;
        padding: 6px 8px;
    }

    .window-actions button {
        width: 26px;
        height: 18px;
    }

    .window-ext-btn {
        width: 34px;
        height: 34px;
    }

    .window-ext-btn svg {
        width: 18px;
        height: 18px;
    }

    .app-tile-new {
        width: 28px;
        height: 28px;
        opacity: 1;
        transform: scale(1);
    }
}

.window.fullscreen {
    position: fixed;
    inset: 0;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0
}

.traffic-lights {
    display: flex;
    gap: 7px;
    align-items: center
}

.traffic {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    cursor: pointer
}

.traffic.close {
    background: #f06b5f
}

.traffic.minimize {
    background: #f4bd4f
}

.traffic.maximize {
    background: #5ec66f
}