#menubar {
  display: flex; align-items: center; padding: 0 10px 0 14px;
  background: var(--menu-bg); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  font-size: 13px; transition: transform 0.35s var(--spring);
}
#menubar.hidden-bar { transform: translateY(-105%); }
#menubar .mb-left { display: flex; align-items: center; gap: 2px; min-width: 0; }
#menubar .mb-right { margin-left: auto; display: flex; align-items: center; gap: 1px; }
.mb-item {
  height: 20px; padding: 0 9px; border-radius: 5px; display: flex; align-items: center; gap: 6px;
  color: var(--text); white-space: nowrap; position: relative; transition: background 0.1s;
}
.mb-item svg { width: 15px; height: 15px; flex: none; }
.mb-item:hover, .mb-item.open { background: rgba(127,127,127,0.28); }
.mb-item.apple svg { width: 14px; height: 16px; }
.mb-item.bold { font-weight: 700; }
.mb-item.status { padding: 0 6px; }
.mb-item.status svg { width: 16px; height: 16px; }
.mb-clock { font-variant-numeric: tabular-nums; letter-spacing: 0.005em; }

.mb-menu {
  position: absolute; top: calc(100% + 5px); left: 0; min-width: 230px; padding: 5px;
  border-radius: 9px; background: var(--panel); backdrop-filter: var(--blur);
  box-shadow: var(--shadow-pop); z-index: 410; animation: menu-in 0.12s ease-out;
}
@keyframes menu-in { from { transform: scale(0.98) translateY(-3px); opacity: 0.5; } }
.mb-menu .mi { height: 23px; padding: 0 10px 0 22px; border-radius: 5px; display: flex; align-items: center; font-size: 13px; position: relative; }
.mb-menu .mi .mi-shortcut { margin-left: auto; padding-left: 28px; color: var(--text-3); font-size: 12.5px; }
.mb-menu .mi.checked::before { content: "✓"; position: absolute; left: 8px; font-size: 11px; color: var(--text); }
.mb-menu .mi:not(.disabled):hover { background: var(--accent); color: #fff; }
.mb-menu .mi:not(.disabled):hover .mi-shortcut { color: rgba(255,255,255,0.75); }
.mb-menu .mi.disabled { color: var(--text-3); }
.mb-menu .msep { height: 9px; display: flex; align-items: center; }
.mb-menu .msep::after { content: ""; width: 100%; height: 1px; background: var(--sep); margin: 0 8px; }

#dock-wrap { padding: 0 0 5px; transition: transform 0.35s var(--spring); }
#dock-wrap.autohide:not(.peek) { transform: translateY(calc(100% + 8px)); }
#dock {
  pointer-events: auto; display: flex; align-items: flex-end; gap: 2px; padding: 4px 8px;
  border-radius: 22px; background: var(--dock-bg); backdrop-filter: blur(30px) saturate(1.7);
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.28), 0 12px 34px rgba(0,0,0,0.3);
}
html[data-appearance="dark"] #dock { box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.16), 0 12px 34px rgba(0,0,0,0.5); }
.dock-item { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; transform-origin: 50% 100%; transition: transform 0.16s var(--ease-out); will-change: transform; }
.dock-item .di-icon { display: flex; align-items: flex-end; justify-content: center; }
.dock-item .di-icon svg, .dock-item .di-icon img { display: block; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.28)); transition: width 0.16s var(--ease-out), height 0.16s var(--ease-out); }
.dock-item .di-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text); opacity: 0; margin: 3px 0 1px; transition: opacity 0.2s; }
.dock-item.running .di-dot { opacity: 0.82; }
html[data-appearance="dark"] .dock-item.running .di-dot { background: #ddd; }
.dock-item.bouncing .di-icon { animation: bounce-dock 0.9s var(--ease-out) 2; }
.dock-item.minimizing { transition: none; }
.dock-sep { width: 1px; align-self: stretch; margin: 8px 5px; background: rgba(127,127,127,0.35); flex: none; }
#dock-tooltip {
  position: absolute; bottom: 100%; transform: translateX(-50%); margin-bottom: 14px; padding: 4px 11px;
  border-radius: 7px; background: var(--panel); backdrop-filter: var(--blur); box-shadow: var(--shadow-pop);
  font-size: 12.5px; white-space: nowrap; pointer-events: none; z-index: 390;
}
#dock-tooltip::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--panel-solid); }

#window-layer { pointer-events: none; }
.window {
  pointer-events: auto;
  position: absolute; display: flex; flex-direction: column; min-width: 280px; min-height: 160px;
  border-radius: var(--radius-win); overflow: hidden; background: var(--content-bg);
  box-shadow: var(--shadow-win); transition: box-shadow 0.2s;
  animation: win-in 0.26s var(--spring);
}
@keyframes win-in { from { transform: scale(0.94) translateY(12px); opacity: 0; } }
.window.closing { animation: win-out 0.18s ease-in forwards; }
@keyframes win-out { to { transform: scale(0.95); opacity: 0; } }
.window.minimizing { transition: transform 0.5s cubic-bezier(0.5, 0, 0.9, 0.4), opacity 0.42s ease-in 0.08s; pointer-events: none; }
.window.restoring { transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.3s ease-out; }
.window:not(.active) { box-shadow: 0 0 0 0.5px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.12); }
.window:focus { outline: none; }
.window.dragging { transition: none; opacity: 0.96; cursor: grabbing; }
.window.snapping { transition: left 0.28s var(--spring), top 0.28s var(--spring), width 0.28s var(--spring), height 0.28s var(--spring); }
.window.fullscreen { border-radius: 0; }
.window-titlebar {
  height: 38px; flex: none; display: flex; align-items: center; padding: 0 12px; position: relative;
  background: var(--chrome); backdrop-filter: blur(20px); border-bottom: 0.5px solid var(--sep);
}
.window.flat .window-titlebar { border-bottom-color: transparent; }
.traffic { display: flex; gap: 8px; z-index: 2; }
.tl { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; position: relative; }
.tl svg { width: 7px; height: 7px; opacity: 0; transition: opacity 0.1s; stroke: rgba(0,0,0,0.55); stroke-width: 1.4; fill: none; }
.traffic:hover .tl svg { opacity: 1; }
.tl.close { background: var(--tl-close); }
.tl.min { background: var(--tl-min); }
.tl.zoom { background: var(--tl-zoom); }
.window:not(.active) .tl { background: rgba(127,127,127,0.32); }
.window:not(.active) .tl svg { opacity: 0 !important; }
.window-title {
  position: absolute; left: 78px; right: 78px; top: 0; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; pointer-events: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.window:not(.active) .window-title { color: var(--text-3); }
.window-body { flex: 1; min-height: 0; display: flex; flex-direction: column; position: relative; background: var(--content-bg); }
.rz { position: absolute; z-index: 5; }
.rz.n { top: -3px; left: 8px; right: 8px; height: 6px; cursor: ns-resize; }
.rz.s { bottom: -3px; left: 8px; right: 8px; height: 6px; cursor: ns-resize; }
.rz.e { right: -3px; top: 8px; bottom: 8px; width: 6px; cursor: ew-resize; }
.rz.w { left: -3px; top: 8px; bottom: 8px; width: 6px; cursor: ew-resize; }
.rz.ne { top: -4px; right: -4px; width: 12px; height: 12px; cursor: nesw-resize; }
.rz.nw { top: -4px; left: -4px; width: 12px; height: 12px; cursor: nwse-resize; }
.rz.se { bottom: -4px; right: -4px; width: 12px; height: 12px; cursor: nwse-resize; }
.rz.sw { bottom: -4px; left: -4px; width: 12px; height: 12px; cursor: nesw-resize; }

#snap-preview {
  position: absolute; z-index: 25; border-radius: 12px; pointer-events: none;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 55%, transparent);
  backdrop-filter: blur(2px); transition: all 0.18s var(--spring);
}

#mission-control {
  position: absolute; inset: 0; z-index: 450; background: var(--overlay);
  backdrop-filter: blur(26px) saturate(1.5); animation: fadein 0.25s ease;
}
#mc-spaces { position: absolute; top: 34px; left: 0; right: 0; display: flex; gap: 14px; justify-content: center; align-items: center; animation: fade-up 0.3s var(--spring); }
.mc-space {
  width: 168px; height: 100px; border-radius: 10px; overflow: hidden; position: relative; flex: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.25); cursor: pointer;
  transition: transform 0.2s var(--spring), box-shadow 0.2s;
}
.mc-space:hover { transform: scale(1.05); }
.mc-space.current { box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 0 2.5px var(--accent); }
.mc-space svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mc-space .mc-label { position: absolute; bottom: 5px; left: 8px; font-size: 11px; font-weight: 600; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.mc-space .mc-count { position: absolute; top: 5px; right: 7px; font-size: 10px; color: #fff; background: rgba(0,0,0,0.35); border-radius: 7px; padding: 1px 6px; }
.mc-space.add-space { background: rgba(127,127,127,0.25); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 34px; font-weight: 300; backdrop-filter: blur(8px); }
#mission-control.active .window { transition: transform 0.38s var(--spring), opacity 0.3s; cursor: pointer; }
#mission-control.active .window:hover { filter: brightness(1.05); }
#mission-control .window.mc-drag { transition: none !important; z-index: 999 !important; }

#spotlight {
  position: absolute; top: 17%; left: 50%; transform: translateX(-50%); width: 640px; z-index: 520;
  border-radius: 13px; background: var(--panel); backdrop-filter: blur(36px) saturate(1.8);
  box-shadow: var(--shadow-pop); overflow: hidden; animation: spot-in 0.18s var(--spring);
}
@keyframes spot-in { from { transform: translateX(-50%) scale(1.04) translateY(-8px); opacity: 0; } }
#spotlight .sp-head { display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
#spotlight .sp-head svg { width: 21px; height: 21px; color: var(--text-3); flex: none; }
#spotlight input { flex: 1; border: none; outline: none; background: none; font-size: 21px; color: var(--text); font-weight: 400; }
#spotlight .sp-results { max-height: 380px; overflow-y: auto; border-top: 0.5px solid var(--sep); padding: 5px; }
#spotlight .sp-cat { font-size: 11px; font-weight: 700; color: var(--text-3); padding: 6px 10px 3px; text-transform: uppercase; letter-spacing: 0.03em; }
.sp-row { display: flex; align-items: center; gap: 10px; padding: 5px 10px; border-radius: 7px; font-size: 14px; }
.sp-row .sp-ic { width: 28px; height: 28px; flex: none; display: flex; align-items: center; justify-content: center; }
.sp-row .sp-ic svg { width: 26px; height: 26px; }
.sp-row .sp-sub { margin-left: auto; font-size: 12px; color: var(--text-3); }
.sp-row.sel { background: var(--accent); color: #fff; }
.sp-row.sel .sp-sub { color: rgba(255,255,255,0.7); }
#spotlight .sp-foot { border-top: 0.5px solid var(--sep); padding: 6px 14px; font-size: 11px; color: var(--text-3); display: flex; gap: 14px; }

#control-center {
  position: absolute; top: calc(var(--mb-h) + 6px); right: 8px; width: 344px; z-index: 530;
  border-radius: 18px; background: var(--cc-bg); backdrop-filter: blur(38px) saturate(1.8);
  box-shadow: var(--shadow-pop); padding: 10px; animation: cc-in 0.22s var(--spring); transform-origin: top right;
}
@keyframes cc-in { from { transform: scale(0.9) translateY(-8px); opacity: 0; } }
.cc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cc-module { background: var(--cc-cell); border-radius: 14px; padding: 10px; box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.14); }
.cc-tile { display: flex; align-items: center; gap: 9px; padding: 5px 4px; border-radius: 9px; width: 100%; text-align: left; transition: background 0.12s; }
.cc-tile:hover { background: rgba(127,127,127,0.14); }
.cc-orb { width: 30px; height: 30px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; background: rgba(127,127,127,0.3); color: #fff; transition: background 0.18s; }
.cc-orb svg { width: 15px; height: 15px; }
.cc-orb.on { background: var(--accent); }
.cc-orb.on.green { background: var(--green); }
.cc-orb.on.orange { background: var(--orange); }
.cc-tile .cc-t1 { font-size: 12.5px; font-weight: 600; line-height: 1.2; display: block; }
.cc-tile .cc-t2 { font-size: 11px; color: var(--text-3); display: block; }
.cc-slider-mod { grid-column: span 1; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.cc-slider-mod.wide { grid-column: span 2; flex-direction: row; align-items: center; }
.cc-slider-mod .cc-sl-label { font-size: 11.5px; font-weight: 600; color: var(--text-2); }
.cc-slider-mod svg { width: 16px; height: 16px; color: var(--text-2); flex: none; }
.cc-music { grid-column: span 2; display: flex; align-items: center; gap: 10px; }
.cc-music .cc-art { width: 40px; height: 40px; border-radius: 7px; flex: none; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.cc-music .cc-mi { flex: 1; min-width: 0; }
.cc-music .cc-mi b { font-size: 12.5px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cc-music .cc-mi span { font-size: 11px; color: var(--text-3); display: block; }
.cc-music button { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text); }
.cc-music button:hover { background: rgba(127,127,127,0.16); }
.cc-music button svg { width: 15px; height: 15px; }

#siri-pop {
  position: absolute; top: calc(var(--mb-h) + 6px); right: 8px; width: 320px; z-index: 530; border-radius: 18px;
  background: var(--cc-bg); backdrop-filter: blur(38px) saturate(1.8); box-shadow: var(--shadow-pop);
  padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; animation: cc-in 0.22s var(--spring); transform-origin: top right;
}
.siri-orb {
  width: 60px; height: 60px; border-radius: 50%; position: relative;
  background: conic-gradient(from 0deg, #4facfe, #a86fff, #ff6fb5, #ffb86b, #4facfe);
  filter: blur(0.5px); animation: spin 5s linear infinite;
}
.siri-orb::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: var(--cc-bg); backdrop-filter: blur(4px); }
#siri-pop input { width: 100%; text-align: center; }
#siri-pop .siri-answer { font-size: 13px; color: var(--text-2); text-align: center; min-height: 0; line-height: 1.4; }

#launchpad {
  position: absolute; inset: 0; z-index: 460; background: var(--overlay); backdrop-filter: blur(34px) saturate(1.6);
  display: flex; flex-direction: column; align-items: center; padding-top: 60px;
  animation: fadein 0.25s ease; transition: opacity 0.25s, transform 0.25s;
}
#launchpad.closing { opacity: 0; transform: scale(1.08); }
#launchpad .lp-search { width: 280px; height: 30px; border-radius: 8px; background: rgba(127,127,127,0.25); box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.2); display: flex; align-items: center; gap: 7px; padding: 0 10px; }
#launchpad .lp-search svg { width: 14px; height: 14px; color: rgba(255,255,255,0.75); }
#launchpad .lp-search input { flex: 1; background: none; border: none; outline: none; color: #fff; font-size: 14px; }
#launchpad .lp-grid { display: grid; grid-template-columns: repeat(6, 128px); gap: 34px 10px; margin-top: 56px; justify-content: center; }
.lp-app { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.5); font-size: 12.5px; transition: transform 0.15s; }
.lp-app:hover { transform: scale(1.06); }
.lp-app svg { width: 74px; height: 74px; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.4)); }

.ctx-menu {
  position: fixed; min-width: 200px; padding: 5px; border-radius: 9px; z-index: 940;
  background: var(--panel); backdrop-filter: var(--blur); box-shadow: var(--shadow-pop);
  animation: menu-in 0.12s ease-out;
}
.ctx-menu .mi { height: 23px; padding: 0 14px 0 22px; border-radius: 5px; display: flex; align-items: center; font-size: 13px; position: relative; }
.ctx-menu .mi .mi-shortcut { margin-left: auto; padding-left: 28px; color: var(--text-3); font-size: 12.5px; }
.ctx-menu .mi:not(.disabled):hover { background: var(--accent); color: #fff; }
.ctx-menu .mi:not(.disabled):hover .mi-shortcut { color: rgba(255,255,255,0.75); }
.ctx-menu .mi.disabled { color: var(--text-3); }
.ctx-menu .mi.checked::before { content: "✓"; position: absolute; left: 8px; font-size: 11px; }
.ctx-menu .msep { height: 9px; display: flex; align-items: center; }
.ctx-menu .msep::after { content: ""; width: 100%; height: 1px; background: var(--sep); margin: 0 8px; }

.notification {
  width: 344px; border-radius: 15px; padding: 11px 13px; display: flex; gap: 10px; align-items: flex-start;
  background: var(--panel); backdrop-filter: blur(30px) saturate(1.7); box-shadow: var(--shadow-pop);
  animation: notif-in 0.45s var(--spring); cursor: pointer; position: relative; overflow: hidden;
}
.notification.out { transition: transform 0.3s ease-in, opacity 0.3s; transform: translateX(110%); opacity: 0; }
.notification .n-ic { width: 30px; height: 30px; flex: none; }
.notification .n-ic svg { width: 30px; height: 30px; }
.notification .n-body { flex: 1; min-width: 0; }
.notification .n-app { font-size: 11px; font-weight: 600; color: var(--text-3); display: flex; }
.notification .n-app time { margin-left: auto; font-weight: 400; }
.notification .n-title { font-size: 13px; font-weight: 700; margin-top: 1px; }
.notification .n-text { font-size: 12.5px; color: var(--text-2); line-height: 1.35; margin-top: 1px; }
.notification .n-actions { display: flex; gap: 6px; margin-top: 8px; }
.notification .n-actions button { flex: 1; height: 24px; border-radius: 6px; background: var(--field-bg); font-size: 12px; font-weight: 600; }
.notification .n-actions button.primary { background: var(--accent); color: #fff; }

#app-switcher {
  position: absolute; top: 22%; left: 50%; transform: translateX(-50%); z-index: 560; display: flex; gap: 4px; padding: 10px;
  border-radius: 16px; background: var(--panel); backdrop-filter: blur(30px); box-shadow: var(--shadow-pop);
}
#app-switcher .as-item { width: 66px; padding: 8px 4px 5px; border-radius: 10px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
#app-switcher .as-item svg { width: 42px; height: 42px; }
#app-switcher .as-item span { font-size: 10.5px; color: var(--text-2); max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
#app-switcher .as-item.sel { background: var(--accent); }
#app-switcher .as-item.sel span { color: #fff; }

#screensaver { background: #000; overflow: hidden; cursor: none; }
#screensaver .ss-bg { position: absolute; inset: -8%; animation: ss-drift 46s ease-in-out infinite alternate; }
#screensaver .ss-bg svg { width: 100%; height: 100%; }
@keyframes ss-drift { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.14) translate(-1.6%, -1.2%); } }
#screensaver .ss-stars { position: absolute; inset: 0; opacity: 0.7; }
#screensaver .ss-stars i { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #fff; animation: pulse 3.4s ease-in-out infinite; }
#screensaver .ss-clock { position: absolute; top: 12%; left: 8%; color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.5); animation: fade-up 1s ease; }
#screensaver .ss-clock .t { font-size: 92px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
#screensaver .ss-clock .d { font-size: 24px; font-weight: 500; opacity: 0.85; margin-top: 6px; }
#screensaver .ss-hint { position: absolute; bottom: 26px; width: 100%; text-align: center; color: rgba(255,255,255,0.4); font-size: 12px; }

.widget { pointer-events: auto; border-radius: 20px; backdrop-filter: blur(26px) saturate(1.6); box-shadow: 0 8px 26px rgba(0,0,0,0.16), inset 0 0 0 0.5px rgba(255,255,255,0.22); overflow: hidden; position: absolute; transition: transform 0.2s var(--spring); }
.widget:hover { transform: scale(1.025); }
.wg-clock { width: 170px; height: 170px; background: linear-gradient(160deg, rgba(52,120,246,0.85), rgba(88,86,214,0.85)); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.wg-clock .t { font-size: 42px; font-weight: 700; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.wg-clock .ap { font-size: 20px; font-weight: 600; opacity: 0.9; }
.wg-clock .z { font-size: 12px; opacity: 0.75; margin-top: 4px; }
.wg-weather { width: 170px; height: 170px; padding: 14px; background: linear-gradient(170deg, rgba(74,144,226,0.9), rgba(47,84,150,0.9)); color: #fff; display: flex; flex-direction: column; }
.wg-weather .loc { font-size: 14px; font-weight: 600; }
.wg-weather .deg { font-size: 46px; font-weight: 500; line-height: 1.05; margin-top: 2px; }
.wg-weather .cond { font-size: 13px; opacity: 0.9; }
.wg-weather .hl { font-size: 12px; opacity: 0.75; margin-top: auto; }
.wg-cal { width: 170px; height: 170px; background: rgba(255,255,255,0.72); padding: 12px 14px; display: flex; flex-direction: column; }
html[data-appearance="dark"] .wg-cal { background: rgba(44,44,48,0.72); }
.wg-cal .wd { color: var(--red); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.wg-cal .dn { font-size: 54px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.wg-cal .ev { margin-top: auto; font-size: 11.5px; border-left: 3px solid var(--accent); padding-left: 7px; color: var(--text-2); }
.wg-cal .ev b { display: block; color: var(--text); font-size: 12px; }
#notification-center { position: absolute; top: 0; right: 0; bottom: 0; width: 360px; z-index: 480; padding: calc(var(--mb-h) + 10px) 12px 12px; overflow-y: auto; background: transparent; animation: nc-in 0.3s var(--spring); transform-origin: top right; }
@keyframes nc-in { from { transform: translateX(30px); opacity: 0; } }
#notification-center .nc-empty { color: var(--text-3); text-align: center; font-size: 12.5px; margin-top: 40px; }

#force-quit { width: 300px; }
#force-quit .fq-list { width: 100%; max-height: 200px; overflow-y: auto; border-radius: 7px; background: var(--content-bg); box-shadow: inset 0 0 0 0.5px var(--sep); margin: 8px 0; }
#force-quit .fq-item { display: flex; align-items: center; gap: 9px; padding: 6px 10px; font-size: 12.5px; }
#force-quit .fq-item svg { width: 22px; height: 22px; }
#force-quit .fq-item.sel { background: var(--accent); color: #fff; }

.desktop-icon { position: absolute; width: 92px; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 6px 2px; border-radius: 8px; }
.desktop-icon .dii { width: 56px; height: 56px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35)); }
.desktop-icon .dii svg { width: 56px; height: 56px; }
.desktop-icon .dil { font-size: 12px; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.7); text-align: center; line-height: 1.25; padding: 1px 5px; border-radius: 4px; max-width: 100%; word-break: break-word; }
.desktop-icon.selected { background: color-mix(in srgb, var(--accent) 30%, transparent); }
.desktop-icon.selected .dil { background: var(--accent); text-shadow: none; }
