#win95-desktop {
  background-color: #008080;
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 30px 20px;
  font-family: "MS Sans Serif", "Tahoma", sans-serif;
}

.win95-icon {
  width: 90px;
  text-align: center;
  margin: 20px 30px;
  color: white;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease-in-out;
}

.win95-icon img {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto 5px auto;
  image-rendering: pixelated;
}

.win95-icon span {
  display: block;
  font-size: 12px;
  text-shadow: 1px 1px #000;
  line-height: 1.2;
}

.win95-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px dotted rgba(255,255,255,0.6);
}

.win95-icon.selected {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px dotted #fff;
}

#win95-popup {
  position: absolute;
  top: 120px;
  left: 150px;
  width: 320px;
  background: #c0c0c0;
  border: 2px solid #808080;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  padding: 10px;
  font-family: "MS Sans Serif";
  z-index: 1000;
}

#win95-popup.hidden { display: none; }

#win95-close-btn {
  margin-top: 10px;
  background: #dfdfdf;
  border: 2px outset #fff;
  cursor: pointer;
  font-family: "MS Sans Serif";
  font-size: 12px;
}