/* ============================================ */
/* GB FLUENT — Desktop shortcuts (#1188)        */
/* Per-user desktop icons layer (.shortcut)     */
/* ============================================ */

.gb-desktop-icons {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.gb-desktop-icon {
  position: absolute;
  width: 84px;
  padding: 6px 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  pointer-events: auto;
  border: 1px solid transparent;
  transition: background 120ms, border-color 120ms;
}

.gb-desktop-icon:hover {
  background: var(--win-caption-hover, rgba(255, 255, 255, 0.09));
}

.gb-desktop-icon.selected {
  background: rgba(132, 214, 105, 0.16);
  border-color: rgba(132, 214, 105, 0.45);
}

.gb-dicon-glyph {
  position: relative;
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

.gb-dicon-glyph svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: rgba(255, 255, 255, 0.06);
}

.gb-dicon-arrow {
  position: absolute;
  right: -2px;
  bottom: -2px;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  background: var(--primary, #84d669);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.gb-dicon-label {
  max-width: 100%;
  font-size: 10px;
  line-height: 1.25;
  text-align: center;
  color: var(--text, #eee);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
}
