.desktop-shortcut {
  position: absolute;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition-fast);
}

.desktop-shortcut:hover {
  background: rgba(255, 255, 255, 0.1);
}

.desktop-shortcut.dragging {
  opacity: 0.8;
  z-index: 1000;
}

.desktop-shortcut-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-window);
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.desktop-shortcut-icon svg {
  width: 28px;
  height: 28px;
  color: var(--text-primary);
}

.desktop-shortcut-emoji {
  font-size: 28px;
  line-height: 1;
}

.desktop-shortcut-label {
  font-family: var(--font-system);
  font-size: 11px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.3;
  max-width: 100%;
  word-wrap: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Light theme adjustments */
[data-theme="light"] .desktop-shortcut:hover {
  background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .desktop-shortcut-label {
  color: var(--text-primary);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}
