/* src/mockups/classic-mac.css */
*, *:before, *:after {
  box-sizing: border-box;
}

:root {
  --button-box-shadow: inset -1px -1px 0px 0px #777, inset -2px -2px 0px 0px #aaa, inset 1px 1px 0px 0px #ddd, inset 2px 2px 0px 0px #fff;
  --button-hover-bezel: 0 0 0 1px #aaa, 0 0 0 2px #ddd, 0 0 0 3px #000;
}

html, body {
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  color: #1a1a2e;
  background-color: #6674a6;
  height: 100%;
  margin: 0;
  font-size: 12px;
  font-weight: normal;
}

.mac-desktop {
  background: linear-gradient(135deg, #5b6899 0%, #7b82b0 40%, #8e8dbf 70%, #7a80b0 100%);
  min-height: 100vh;
  padding: 0;
}

.mac-menubar {
  display: flex;
  background: linear-gradient(#eaecf4, #d8dbe8);
  border-bottom: 1px solid #88a;
  align-items:  center;
  gap: 16px;
  height: 20px;
  padding: 0 8px;
  font-size: 12px;
  box-shadow: inset 0 1px #f4f5fa;
}

.mac-menubar-item {
  cursor: default;
  position: relative;
  padding: 1px 6px;
}

.mac-menubar-item:hover, .mac-menubar-item.active {
  color: #fff;
  background: linear-gradient(#56a, #45a);
  border-radius: 3px;
}

.mac-menubar-item.apple {
  font-size: 14px;
  font-weight: bold;
}

.mac-dropdown {
  position: absolute;
  z-index: 10000;
  color: #2a2a3e;
  background: linear-gradient(#f0f1f8, #e4e6f0);
  border: 1px solid #88a;
  border-radius: 0 0 6px 6px;
  min-width: 200px;
  padding: 4px 0;
  font-weight: normal;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 12px #28285040;
}

.mac-dropdown-item {
  display: flex;
  cursor: default;
  white-space: nowrap;
  justify-content: space-between;
  align-items:  center;
  padding: 4px 16px;
}

.mac-dropdown-item:hover {
  color: #fff;
  background: linear-gradient(#57c, #46b);
}

.mac-dropdown-item:hover .mac-dropdown-shortcut {
  color: #b8ccff;
}

.mac-dropdown-item.disabled {
  color: #aac;
}

.mac-dropdown-item.disabled:hover {
  color: #aac;
  background: none;
}

.mac-dropdown-shortcut {
  color: #88a;
  margin-left: 24px;
  font-size: 11px;
}

.mac-dropdown-separator {
  background: #c0c2d4;
  height: 1px;
  margin: 4px 8px;
}

.mac-window {
  position: relative;
  background: #ddd;
  border: 1px solid #111;
  box-shadow: 2px 3px #333, inset 1px 1px #fff, inset -1px -1px #999;
}

.mac-titlebar {
  display: flex;
  position: relative;
  background: linear-gradient(#fff 0 1px, #ccc 1px 2px, #fff 2px 3px, #ccc 3px 4px, #fff 4px 5px, #ccc 5px 6px, #fff 6px 7px, #ccc 7px 8px, #fff 8px 9px, #ccc 9px 10px, #fff 10px 11px, #ccc 11px);
  border-bottom: 1px solid #111;
  align-items:  center;
  height: 20px;
  padding: 0 4px;
}

.mac-titlebar-text {
  text-align: center;
  white-space: nowrap;
  background: #ddd;
  flex: 1;
  margin: 0 24px;
  padding: 0 8px;
  font-size: 12px;
}

.mac-control-box {
  cursor: pointer;
  background: linear-gradient(to bottom right, #eee, #ccc);
  border: 1px solid #222;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #888;
}

.mac-control-box:active {
  box-shadow: none;
  background: #999;
}

.mac-window-inner {
  background-color: #fff;
  border: 1px solid #111;
  margin: 2px 4px 4px;
  box-shadow: -1px -1px #999, 1px 1px #fff, inset 1px 1px #888, inset -1px -1px #fff;
}

.mac-button {
  box-shadow: var(--button-box-shadow);
  cursor: pointer;
  background-color: #dedede;
  border: 1px solid #000;
  border-radius: 3px;
  height: 22px;
  padding: 2px 16px;
  font-family: inherit;
  font-size: 12px;
}

.mac-button:hover {
  box-shadow: var(--button-box-shadow), var(--button-hover-bezel);
}

.mac-button:active {
  color: #fff;
  box-shadow: var(--button-hover-bezel), inset -1px -1px 0px 0px #888, inset -2px -2px 0px 0px #777, inset 1px 1px 0px 0px #444, inset 2px 2px 0px 0px #555;
  background-color: #666;
}

.mac-button-primary {
  box-shadow: var(--button-box-shadow), 0 0 0 2px #000;
  border-radius: 5px;
}

.mac-button-danger:active {
  background-color: #933;
}

.mac-tabs {
  display: flex;
  background: #ddd;
  border-bottom: 1px solid #999;
  gap: 2px;
  padding: 0 4px;
}

.mac-tab {
  cursor: pointer;
  background: #bbb;
  border: 1px solid #888;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  padding: 3px 12px;
  font-family: inherit;
  font-size: 12px;
  box-shadow: inset 1px 1px #ddd;
}

.mac-tab:hover {
  background: #ccc;
}

.mac-tab.active {
  background: #fff;
  border-color: #111;
  font-weight: bold;
  box-shadow: inset 1px 1px #fff;
}

.mac-status-dot {
  display: inline-block;
  border: 1px solid #333;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.mac-status-dot.running {
  background: #0a0;
}

.mac-status-dot.stopped {
  background: #999;
}

.mac-status-dot.error {
  background: #c00;
}

.mac-list {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
}

.mac-list th {
  text-align: left;
  background: #ddd;
  border: 1px solid #999;
  border-top: none;
  padding: 2px 8px;
  font-weight: normal;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #aaa;
}

.mac-list td {
  border-bottom: 1px solid #ddd;
  padding: 2px 8px;
}

.mac-list tr:hover td, .mac-list tr.selected td {
  color: #fff;
  background: #36c;
}

.mac-badge {
  display: inline-block;
  background: #eee;
  border: 1px solid #666;
  padding: 0 4px;
  font-size: 10px;
}

.mac-badge.modified {
  background: #fc0;
  border-color: #960;
}

.mac-badge.main-branch {
  background: #cdf;
  border-color: #36c;
}

.mac-scroll-area {
  overflow-y: auto;
  max-height: calc(100vh - 120px);
}

.mac-separator {
  background: #999;
  height: 2px;
  margin: 4px 0;
  box-shadow: 0 1px #fff;
}

/* src/mockups/desktop-gl.css */
.gl-mac-btn {
  cursor: pointer;
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  color: #2a2a3e;
  background: linear-gradient(#f0f1f6, #dddfe8);
  border: 1px solid #88a;
  border-radius: 4px;
  height: 26px;
  padding: 2px 14px;
  font-size: 13px;
  box-shadow: inset 0 1px #ffffff80, 0 1px 2px #0000001a;
}

.gl-mac-btn:hover {
  background: linear-gradient(#f6f7fc, #e4e6ef);
  border-color: #66a;
  box-shadow: inset 0 1px #ffffff80, 0 1px 3px #00000026;
}

.gl-mac-btn:active {
  color: #1a1a2e;
  background: linear-gradient(#c8cad6, #b8bad0);
  box-shadow: inset 0 1px 3px #0003;
}

.gl-mac-btn-primary {
  color: #fff;
  background: linear-gradient(#7088d0, #5570c0);
  border-color: #3a4a88;
  border-radius: 5px;
  box-shadow: inset 0 1px #ffffff4d, 0 1px 3px #0003;
}

.gl-mac-btn-primary:hover {
  color: #fff;
  background: linear-gradient(#7d95da, #6280cc);
  border-color: #3a4a88;
}

.gl-badge {
  display: inline-block;
  color: #446;
  background: #ecedf5;
  border: 1px solid #99b;
  border-radius: 8px;
  padding: 1px 7px;
  font-size: 11px;
}

.gl-badge-main {
  color: #2a4488;
  background: #d0ddff;
  border-color: #68c;
}

.gl-badge-modified {
  color: #6b5000;
  background: #fff0b8;
  border-color: #ca4;
}

.gl-sidebar {
  display: flex;
  overflow: hidden;
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  color: #2a2a3e;
  background: linear-gradient(#e2e4f0, #d6d8e8);
  border-right: 1px solid #88a;
  flex-direction: column;
  width: 260px;
  font-size: 13px;
}

.gl-select {
  background: #fff;
  border: 1px solid #99b;
  border-radius: 3px;
  width: 100%;
  padding: 3px 4px;
  font-family: inherit;
  font-size: 13px;
  box-shadow: inset 0 1px 2px #0000000f;
}

.gl-sidebar-list {
  overflow-y: auto;
  flex: 1;
}

.gl-sidebar-repo-header {
  display: flex;
  cursor: pointer;
  user-select: none;
  background: linear-gradient(#d4d6e4, #c8cade);
  border-top: 1px solid #e8eaf2;
  border-bottom: 1px solid #a0a0bb;
  align-items:  center;
  gap: 6px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: bold;
}

.gl-sidebar-repo-header:hover {
  background: linear-gradient(#dcdeec, #d0d2e6);
}

.gl-sidebar-repo-chevron {
  text-align: center;
  color: #668;
  flex-shrink: 0;
  width: 12px;
  font-size: 13px;
}

.gl-sidebar-repo-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.gl-sidebar-gear-btn {
  display: flex;
  color: #668;
  opacity: .5;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 3px;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 20px;
  height: 20px;
  padding: 0;
}

.gl-sidebar-gear-btn:hover {
  color: #446;
  opacity: 1;
  background: #00000014;
}

.gl-sidebar-repo-meta {
  display: flex;
  color: #668;
  background: linear-gradient(#d8dae8, #d0d2e2);
  border-bottom: 1px solid #a0a0bb;
  align-items:  center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 11px;
}

.gl-sidebar-meta-btn {
  font-size: 11px;
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  color: #557;
  cursor: pointer;
  background: #0000000a;
  border: none;
  border-radius: 3px;
  margin-left: auto;
  padding: 1px 6px;
}

.gl-sidebar-meta-btn:hover {
  color: #446;
  background: #00000014;
}

.gl-sidebar-repo-spacer {
  background: repeating-linear-gradient(-45deg, #0000, #0000 2px, #0000000a 2px 3px), #c4c6d6;
  height: 6px;
}

.gl-sidebar-item {
  cursor: pointer;
  border-bottom: 1px solid #c8cad8;
  padding: 7px 10px;
  transition: background .12s;
}

.gl-sidebar-item.open {
  background: #ffffff2e;
}

.gl-sidebar-item:hover {
  background: #ffffff59;
}

.gl-sidebar-item-row {
  display: flex;
  align-items:  center;
  gap: 6px;
}

.gl-sidebar-branch {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  font-weight: bold;
}

.gl-sidebar-item-meta {
  display: flex;
  color: #668;
  align-items:  center;
  gap: 5px;
  padding-left: 18px;
  font-size: 11px;
}

.gl-sidebar-item-meta.path {
  margin-top: 1px;
}

.gl-sidebar-item-meta.details {
  margin-top: 6px;
}

.gl-sidebar-item-path {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #88a;
}

.gl-status-dot {
  display: inline-block;
  border: 1px solid #00000040;
  border-radius: 50%;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}

.gl-status-dot.running {
  background: #3b5;
  border-color: #0050004d;
}

.gl-status-dot.stopped {
  background: #aac;
}

.gl-sidebar-footer {
  background: linear-gradient(#d0d2e2, #c4c6da);
  border-top: 1px solid #a0a0bb;
  padding: 8px;
}

.gl-browse-header {
  display: flex;
  background: linear-gradient(#d4d6e4, #c8cade);
  border-bottom: 1px solid #a0a0bb;
  align-items:  center;
  gap: 6px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: bold;
}

.gl-browse-header-title {
  flex: 1;
}

.gl-browse-back-btn {
  cursor: pointer;
  color: #446;
  display: flex;
  background: none;
  border: none;
  align-items:  center;
  padding: 0;
}

.gl-browse-tree {
  overflow-y: auto;
  flex: 1;
}

.gl-browse-item {
  display: flex;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #0000;
  align-items:  center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12px;
}

.gl-browse-item:hover {
  background: #ffffff59;
}

.gl-browse-item.selected {
  background: #3366cc26;
}

.gl-browse-item.git-repo {
  font-weight: bold;
}

.gl-browse-icon {
  color: #668;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.gl-browse-item.git-repo .gl-browse-icon {
  color: #c63;
}

.gl-browse-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.gl-browse-config {
  background: linear-gradient(#d8dae8, #d0d2e2);
  border-top: 1px solid #a0a0bb;
  padding: 8px;
}

.gl-browse-selected-path {
  color: #446;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 6px;
  font-size: 11px;
}

.gl-browse-config .gl-field {
  margin-bottom: 4px;
}

.gl-browse-config .gl-label {
  margin-bottom: 1px;
  font-size: 10px;
}

.gl-browse-config .gl-input {
  padding: 2px 4px;
  font-size: 11px;
}

.gl-browse-config-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 6px;
}

.gl-panel-header {
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  background: linear-gradient(#e8eaf4, #dddfe8);
  border-bottom: 1px solid #a0a0bb;
  flex-shrink: 0;
  font-size: 13px;
}

.gl-panel-header-top {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  padding: 8px 12px 4px;
}

.gl-panel-header-left {
  display: flex;
  align-items:  center;
  gap: 8px;
}

.gl-panel-branch {
  font-size: 15px;
}

.gl-panel-header-right {
  display: flex;
  gap: 6px;
}

.gl-panel-header-meta {
  display: flex;
  color: #668;
  align-items:  center;
  gap: 6px;
  padding: 0 12px 8px;
  font-size: 12px;
}

.gl-panel-path {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #88a;
  max-width: 300px;
}

.gl-terminal-tabs {
  display: flex;
  background: linear-gradient(#d0d2e2, #c4c6d8);
  border-bottom: 1px solid #a0a0bb;
  flex-shrink: 0;
  gap: 2px;
  padding: 0 8px;
}

.gl-terminal-tab {
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  cursor: pointer;
  color: #555570;
  background: linear-gradient(#c8cadc, #b8bacc);
  border: 1px solid #99b;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  margin-top: 3px;
  padding: 4px 14px;
  font-size: 12px;
  box-shadow: inset 0 1px #fff6;
}

.gl-terminal-tab:hover {
  color: #333350;
  background: linear-gradient(#d8dae8, #cccedc);
}

.gl-terminal-tab.active {
  color: #ccd;
  box-shadow: none;
  background: #1e1e2e;
  border-color: #556;
  font-weight: bold;
}

.gl-terminal-area {
  color: #cdd6f4;
  overflow-y: auto;
  background: #1e1e2e;
  flex: 1;
  padding: 10px 14px;
  font-family: SF Mono, Monaco, Cascadia Code, monospace;
  font-size: 13px;
  line-height: 1.5;
}

.wm-desktop {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  flex: 1;
}

.wm-window {
  position: absolute;
  display: flex;
  overflow: hidden;
  background: #e0e2ee;
  border: 1px solid #77a;
  border-radius: 6px;
  flex-direction: column;
  box-shadow: 0 4px 12px #28285040, 0 1px 3px #28285026;
}

.wm-titlebar {
  display: flex;
  cursor: grab;
  user-select: none;
  background: linear-gradient(#e8eaf4, #d0d2e4);
  border-bottom: 1px solid #99b;
  flex-shrink: 0;
  align-items:  center;
  height: 28px;
  padding: 0 8px;
}

.wm-titlebar:active {
  cursor: grabbing;
}

.wm-titlebar-text {
  text-align: center;
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #2a2a3e;
  flex: 1;
  padding: 0 12px;
  font-size: 13px;
  font-weight: bold;
}

.wm-titlebar-repo {
  opacity: .55;
  font-weight: normal;
}

.wm-titlebar-sep {
  opacity: .35;
}

.wm-traffic-lights {
  display: flex;
  flex-shrink: 0;
  align-items:  center;
  gap: 6px;
  padding: 0 4px;
}

.wm-tl {
  cursor: pointer;
  display: flex;
  position: relative;
  border: .5px solid #0003;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 12px;
  height: 12px;
  padding: 0;
}

.wm-tl svg {
  display: block;
}

.wm-tl-close {
  background: #ff5f57;
}

.wm-tl-close:active {
  background: #e04840;
}

.wm-tl-minimize {
  background: #febc2e;
}

.wm-tl-minimize:active {
  background: #e0a520;
}

.wm-tl-maximize {
  background: #28c840;
}

.wm-tl-maximize:active {
  background: #1eaf36;
}

.wm-split-btn {
  cursor: pointer;
  color: #668;
  display: flex;
  background: none;
  border: none;
  border-radius: 3px;
  flex-shrink: 0;
  align-items:  center;
  padding: 2px 4px;
}

.wm-split-btn:hover {
  color: #2a2a3e;
  background: #00000014;
}

.gl-pane-divider {
  background: #556;
  flex-shrink: 0;
  width: 1px;
}

.wm-snap-preview {
  position: absolute;
  z-index: 9999;
  pointer-events: none;
  background: #36c3;
  border: 2px solid #3366cc80;
  border-radius: 4px;
  transition: all .15s;
}

.wm-window.wm-maximized {
  box-shadow: none;
  border-color: #99b;
  border-radius: 0;
}

.wm-resize {
  position: absolute;
  z-index: 2;
}

.wm-resize-n {
  cursor: n-resize;
  height: 6px;
  top: -3px;
  left: 8px;
  right: 8px;
}

.wm-resize-s {
  cursor: s-resize;
  height: 6px;
  bottom: -3px;
  left: 8px;
  right: 8px;
}

.wm-resize-e {
  cursor: e-resize;
  width: 6px;
  top: 8px;
  bottom: 8px;
  right: -3px;
}

.wm-resize-w {
  cursor: w-resize;
  width: 6px;
  top: 8px;
  bottom: 8px;
  left: -3px;
}

.wm-resize-ne {
  cursor: ne-resize;
  width: 12px;
  height: 12px;
  top: -3px;
  right: -3px;
}

.wm-resize-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  bottom: -3px;
  right: -3px;
}

.wm-resize-sw {
  cursor: sw-resize;
  width: 12px;
  height: 12px;
  bottom: -3px;
  left: -3px;
}

.wm-resize-nw {
  cursor: nw-resize;
  width: 12px;
  height: 12px;
  top: -3px;
  left: -3px;
}

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(to right, #d0d2e0, #dcdee8);
  border-left: 1px solid #99b;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#c0c2d4, #aaacbe);
  border: 1px solid #88a;
  border-radius: 0;
  box-shadow: inset 1px 1px #fff6, inset -1px -1px #0000001a;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#c8cad8, #b4b6c8);
}

::-webkit-scrollbar-button {
  display: block;
  background: linear-gradient(#d8dae6, #c4c6d6);
  border: 1px solid #99b;
  width: 14px;
  height: 14px;
  box-shadow: inset 1px 1px #fff6;
}

::-webkit-scrollbar-button:hover {
  background: linear-gradient(#e0e2ee, #cccedc);
}

::-webkit-scrollbar-corner {
  background: #d0d2e0;
}

.wm-minimized-tray {
  display: flex;
  align-items:  center;
  gap: 4px;
}

.wm-minimized-btn {
  display: flex;
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  cursor: pointer;
  background: linear-gradient(#dddfe8, #c8cadc);
  border: 1px solid #99b;
  border-radius: 3px;
  align-items:  center;
  gap: 4px;
  height: 18px;
  padding: 0 8px;
  font-size: 11px;
  box-shadow: inset 0 1px #fff6;
}

.wm-minimized-btn:hover {
  background: linear-gradient(#e8eaf2, #d4d6e6);
}

.gl-terminal-tab-add {
  color: #88a;
  padding: 2px 10px;
  font-size: 14px;
  box-shadow: none !important;
  background: none !important;
  border: 1px dashed #99b !important;
}

.gl-terminal-tab-add:hover {
  color: #557;
  background: #ffffff40 !important;
  border-color: #66a !important;
}

.gl-statusbar {
  display: flex;
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  color: #446;
  background: linear-gradient(#d8dae8, #cccedc);
  border-top: 1px solid #99b;
  justify-content: space-between;
  align-items:  center;
  height: 24px;
  padding: 0 12px;
  font-size: 12px;
  box-shadow: inset 0 1px #ffffff80;
}

.gl-dialog-overlay {
  position: fixed;
  display: flex;
  background: #28285059;
  justify-content: center;
  align-items:  center;
  inset: 0;
}

.gl-dialog {
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  color: #2a2a3e;
  background: linear-gradient(#e8eaf4, #d8dae8);
  border: 1px solid #77a;
  border-radius: 8px;
  min-width: 380px;
  max-width: 480px;
  font-size: 13px;
  box-shadow: 0 8px 32px #28285059, 0 2px 8px #28285033;
}

.gl-dialog-titlebar {
  display: flex;
  user-select: none;
  background: linear-gradient(#e0e2ee, #d0d2e2);
  border-bottom: 1px solid #99b;
  border-radius: 8px 8px 0 0;
  justify-content: center;
  align-items:  center;
  height: 28px;
  font-size: 13px;
  font-weight: bold;
}

.gl-dialog-body {
  padding: 16px 20px;
}

.gl-dialog-footer {
  display: flex;
  border-top: 1px solid #b8bad0;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 20px;
}

.gl-label {
  display: block;
  color: #446;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
}

.gl-input {
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  color: #2a2a3e;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #99b;
  border-radius: 3px;
  width: 100%;
  padding: 5px 8px;
  font-size: 13px;
  box-shadow: inset 0 1px 2px #0000000f;
}

.gl-input:focus {
  outline: none;
  border-color: #56a;
  box-shadow: inset 0 1px 2px #0000000f, 0 0 0 2px #56a3;
}

.gl-input:disabled {
  color: #889;
  background: #e8e8f0;
}

.gl-checkbox-row {
  display: flex;
  cursor: pointer;
  align-items:  center;
  gap: 6px;
  font-size: 13px;
}

.gl-field {
  margin-bottom: 12px;
}

.gl-error {
  color: #c33;
  margin-top: 4px;
  font-size: 12px;
}

.gl-mac-btn-danger {
  color: #fff;
  background: linear-gradient(#e06060, #c44);
  border-color: #933;
  box-shadow: inset 0 1px #ffffff4d, 0 1px 3px #0003;
}

.gl-mac-btn-danger:hover {
  background: linear-gradient(#e87070, #d05555);
}

.gl-side-panel {
  position: absolute;
  display: flex;
  overflow: hidden;
  background: linear-gradient(#e2e4f0, #d6d8e8);
  border-right: 1px solid #99b;
  flex-direction: column;
  width: 280px;
  top: 0;
  bottom: 0;
  left: 260px;
  box-shadow: 2px 0 8px #0000001f;
}

.gl-side-panel-header {
  display: flex;
  background: linear-gradient(#d4d6e4, #c8cade);
  border-top: 1px solid #e8eaf2;
  border-bottom: 1px solid #a0a0bb;
  align-items:  center;
  gap: 6px;
  padding: 7px 10px;
  font-size: 12px;
}

.gl-side-panel-title {
  color: #2a2a3e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  flex: 1;
}

.gl-side-panel-close {
  display: flex;
  color: #668;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 3px;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 20px;
  height: 20px;
  padding: 0;
}

.gl-side-panel-close:hover {
  color: #446;
  background: #00000014;
}

.gl-side-panel-body {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 12px;
}

.gl-side-panel-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gl-side-panel-readonly {
  color: #668;
  word-break: break-all;
  font-size: 11px;
  font-family: var(--ui-font, "Segoe UI", sans-serif);
}

.gl-side-panel-hint {
  color: #88a;
  font-size: 10px;
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  margin-top: 2px;
}

.gl-side-panel-section {
  color: #557;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--ui-font, "Segoe UI", sans-serif);
  padding-top: 6px;
}

.gl-side-panel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.gl-side-panel-danger {
  margin: auto -12px -12px;
  padding: 8px;
}

/* node_modules/@xterm/xterm/css/xterm.css */
.xterm {
  cursor: text;
  position: relative;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}

.xterm.focus, .xterm:focus {
  outline: none;
}

.xterm .xterm-helpers {
  position: absolute;
  z-index: 5;
  top: 0;
}

.xterm .xterm-helper-textarea {
  position: absolute;
  opacity: 0;
  z-index: -5;
  white-space: nowrap;
  overflow: hidden;
  resize: none;
  border: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  top: 0;
  left: -9999em;
}

.xterm .composition-view {
  color: #fff;
  display: none;
  position: absolute;
  white-space: nowrap;
  z-index: 1;
  background: #000;
}

.xterm .composition-view.active {
  display: block;
}

.xterm .xterm-viewport {
  overflow-y: scroll;
  cursor: default;
  position: absolute;
  background-color: #000;
  inset: 0;
}

.xterm .xterm-screen {
  position: relative;
}

.xterm .xterm-screen canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.xterm-char-measure-element {
  display: inline-block;
  visibility: hidden;
  position: absolute;
  line-height: normal;
  top: 0;
  left: -9999em;
}

.xterm.enable-mouse-events {
  cursor: default;
}

.xterm.xterm-cursor-pointer, .xterm .xterm-cursor-pointer {
  cursor: pointer;
}

.xterm.column-select.focus {
  cursor: crosshair;
}

.xterm .xterm-accessibility:not(.debug), .xterm .xterm-message {
  position: absolute;
  z-index: 10;
  color: #0000;
  pointer-events: none;
  inset: 0;
}

.xterm .xterm-accessibility-tree:not(.debug) *::selection {
  color: #0000;
}

.xterm .xterm-accessibility-tree {
  user-select: text;
  white-space: pre;
  font-family: monospace;
}

.xterm .xterm-accessibility-tree > div {
  transform-origin: left;
  width: -moz-fit-content;
  width: fit-content;
}

.xterm .live-region {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  left: -9999px;
}

.xterm-dim {
  opacity: 1 !important;
}

.xterm-underline-1 {
  text-decoration: underline;
}

.xterm-underline-2 {
  text-decoration: double underline;
}

.xterm-underline-3 {
  text-decoration: wavy underline;
}

.xterm-underline-4 {
  text-decoration: dotted underline;
}

.xterm-underline-5 {
  text-decoration: dashed underline;
}

.xterm-overline {
  text-decoration: overline;
}

.xterm-overline.xterm-underline-1 {
  text-decoration: overline underline;
}

.xterm-overline.xterm-underline-2 {
  text-decoration: overline double underline;
}

.xterm-overline.xterm-underline-3 {
  text-decoration: overline wavy underline;
}

.xterm-overline.xterm-underline-4 {
  text-decoration: overline dotted underline;
}

.xterm-overline.xterm-underline-5 {
  text-decoration: overline dashed underline;
}

.xterm-strikethrough {
  text-decoration: line-through;
}

.xterm-screen .xterm-decoration-container .xterm-decoration {
  z-index: 6;
  position: absolute;
}

.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer {
  z-index: 7;
}

.xterm-decoration-overview-ruler {
  z-index: 8;
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 0;
}

.xterm-decoration-top {
  z-index: 2;
  position: relative;
}

.xterm .xterm-scrollable-element > .scrollbar {
  cursor: default;
}

.xterm .xterm-scrollable-element > .scrollbar > .scra {
  cursor: pointer;
  font-size: 11px !important;
}

.xterm .xterm-scrollable-element > .visible {
  opacity: 1;
  z-index: 11;
  background: none;
  transition: opacity .1s linear;
}

.xterm .xterm-scrollable-element > .invisible {
  opacity: 0;
  pointer-events: none;
}

.xterm .xterm-scrollable-element > .invisible.fade {
  transition: opacity .8s linear;
}

.xterm .xterm-scrollable-element > .shadow {
  position: absolute;
  display: none;
}

.xterm .xterm-scrollable-element > .shadow.top {
  display: block;
  box-shadow: var(--vscode-scrollbar-shadow, #000) 0 6px 6px -6px inset;
  width: 100%;
  height: 3px;
  top: 0;
  left: 3px;
}

.xterm .xterm-scrollable-element > .shadow.left {
  display: block;
  box-shadow: var(--vscode-scrollbar-shadow, #000) 6px 0 6px -6px inset;
  width: 3px;
  height: 100%;
  top: 3px;
  left: 0;
}

.xterm .xterm-scrollable-element > .shadow.top-left-corner {
  display: block;
  width: 3px;
  height: 3px;
  top: 0;
  left: 0;
}

.xterm .xterm-scrollable-element > .shadow.top.left {
  box-shadow: var(--vscode-scrollbar-shadow, #000) 6px 0 6px -6px inset;
}
