#window_manager {
  position: absolute;
  background: transparent;

  top: 0;
  left: 0;

  height: 100vh;
  width: 100vw;

  z-index: 5;

  pointer-events: none;
}

.window {
  pointer-events: all;

  position: absolute;

  font-family: 'Pixelated MS Sans Serif', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  color: #fff;

  border: 2px solid #2460de;
  border-top: 1px solid #1a83fa;
  background-color: #fff;

  width: 600px;
  height: 400px;

  border-radius: 10px;
}

.window_title:active:hover {
  cursor: grab;
}

.window_title {
  pointer-events: all;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  height: 40px;

  padding: 8px;

  /* Pixels stick out if this isn't set, but this is otherwise not visible */
  border-radius: 4px 4px 0 0;

  box-sizing: border-box;

  background-image: linear-gradient(to bottom, #0055e3, #006bff);
  
  border-bottom: 2px solid #0055e7;
}

.window_title_contents {
  display: flex;
  justify-content: center;
  align-items: center;
}

.window_title_contents img {
  margin-right: 8px;
  height: 20px;
}

.window_actions {
  height: 90%;
}

.window_actions img {
  height: 100%;
}

.window_actions img:hover {
  cursor: pointer;
}

.window_contents {
  overflow: auto;
  color: #000;

  height: calc(100% - 60px);
  padding: 10px;
}