.app-window {
  display: none;
  position: fixed;
  top: 175px;
  left: 50%;
  width: 600px;
  max-width: 92vw;
  margin: auto;
  z-index: 20;
  will-change: transform;
  --tx: 0px;
  --ty: 0px;
  transform: translate(calc(-50% + var(--tx)), var(--ty));

}

.app-window.dragging {
  z-index: 500;
  user-select: none;
}

.app-window .title-bar {
  cursor: move;
  user-select: none;
}

.app-window .window-body {
  max-height: 70vh;
  overflow: auto;
}



.taskbar-app-btn.active {
  box-shadow: inset -1px -1px #fff, inset 1px 1px #0a0a0a,
    inset -2px -2px #dfdfdf, inset 2px 2px grey !important;
}

.taskbar-app-btn.inactive {
}
