.closebutton {
  cursor: pointer;
  margin: 0;
}

.window {
  position: sticky;
  width: 100%;
  display: flex;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 0, 0, 0.25);
  color: #fff;
  justify-content: space-between;
}

.headertext {
  color: black;
  margin: 0;
}

.main-content {
  border: solid;
  width: 300px;
  border-radius: 10px;
  padding: 10px;
  justify-content: space-between;
}

.reopen-btn {
  cursor: pointer;
}

.selected {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

#desktopApps {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

#desktopApps > div {
    transition: transform 0.2s ease, background-color 0.2s ease;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#desktopApps > div:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.25);
}