html {
  background-color: teal;
}

.icon-text {
  display: block;
  position: relative;
  top: -8px;
}

#aCompleteWindow {
  display: block;
  position: fixed;
  width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: #c6c6c6;
}

#aCompleteWindow.maximized {
  display: block;
  width: 100%;
  height: 100%;
}

.desktopIcon {
  cursor: pointer;
  width: 64px;
  margin: 18px;
  display: block;
  align-items: center;
  text-align: center;
  color: white;
  font-family: "Pixelated MS Sans Serif";
}

.desktopIcon a {
  text-decoration: none;
  color: white;
}

.window-body {
  margin: 8px;
  height: 100%;
}

.tree-view {
  position: relative;
  width: calc(100% - 12px);
  height: calc(100% - 50px);
}

/* Media Query for iPhones and Mobile Devices */
@media only screen and (max-width: 600px) {
  body {
    display: flex;
  }

  .desktopIcon {
    width: 48px;
    margin: 16px;
    font-size: 12px;
  }
}
