.desktop-grid {
  display: flex;
  gap: 20px;
  padding: 20px;
  align-items: flex-start;
}

.icon-wrapper {
  /* Layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px; /* Fixed width as requested */
  gap: 8px;
  
  /* Reset button/link styles */
  background: none;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: 10px;
  transition: background 0.2s;
  border-radius: 4px;
}

.icon-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-image img {
  width: 64px;
  height: 64px;
  display: block;
}

.icon-text {
  font-size: 14px;
  text-align: center;
  word-wrap: break-word;
  width: 100%;
  /* Text shadow helps readability on different wallpapers */
}