#desktop {
  position: fixed;
  inset: 0;
  bottom: var(--taskbar-h);
  z-index: var(--z-desktop);
  background: #008080 url('../../assets/gui/bgs/bliss.webp') 63% 45% / cover no-repeat;
  overflow: hidden;
}

#desktop-icons {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 140px;
  grid-auto-rows: 120px;
  gap: 6px;
  padding: 20px 0 0 24px;
  align-content: start;
}

.desktop-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
.desktop-icon:hover {
  background: rgba(49, 106, 197, .22);
}
.desktop-icon.selected {
  background: rgba(49, 106, 197, .5);
  border: 1px dotted rgba(255, 255, 255, .5);
}
.desktop-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 6px;
  pointer-events: none;
}
.desktop-icon span {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0,0,0,.9), 0 0 3px rgba(0,0,0,.8);
  pointer-events: none;
  word-break: break-word;
}

.desktop-icon-br {
  position: absolute !important;
  right: 20px;
  width: 130px;
}
.desktop-icon-br-1 { bottom: 10px; }    
.desktop-icon-br-2 { bottom: 136px; }   

#selection-box {
  position: fixed;
  display: none;
  background: rgba(49, 106, 197, .15);
  border: 1px dotted rgba(255, 255, 255, .5);
  border-radius: 3px;
  pointer-events: none;
  z-index: 50;
}
