/* the app icons sitting on the desktop */

#desktopApps {
  position: absolute;
  top: 0;
  left: 0;

  /* keep them clear of the top bar */
  padding-top: 72px;
  padding-left: 16px;
}


.app-icon {
  width: fit-content;
  text-align: center;
  padding: 12px;
  border-radius: 12px;

  cursor: pointer;
  user-select: none;
}


.app-glyph {
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 26px;
  color: #fff;

  background: var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.app-label {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

/* single click selects, double click opens */
.app-icon.selected {
  background: var(--accent-soft);
  outline: 1px solid var(--accent);
}
