.className {
	property1: 5;
	property2: "16px";
	property3: "hidden";
}

.closebutton {
  width: 12px;
  height: 12px;
  background-color: #ff5f56;
  border-radius: 50%;
  cursor: pointer;
}

.window {
  overflow: hidden;
  border: thick double #32a1ce;
  width: 500px;
  border-radius: 16px;
  background-color: #C2DDF2;
}

.windowheader {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #194B75;
  color: #fff;
  padding: 8px 12px;
  cursor: move;
  font-weight: bold;
  font-size: 14px;
  user-select: none;
  position: relative;
  height: 16px;
}

.desktop-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  user-select: none;
}

.desktop-icon img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.3));
}

.desktop-icon p {
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  margin-top: 6px;
  margin-bottom: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  font-family: 'Gill Sans', sans-serif;
}

.desktop-icon:hover {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  transform: scale(1.05);
}

.desktop-icon.selected {
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

