:root {
  background-color: #000000;
  color: #ffffff;
  cursor: url("pointers/default.png") 1 2, default;
}

body {
  font-family: "PT Sans", sans-serif;
  font-size: 12px;
  margin: 0;
  user-select: none;
}

body > .shell > .background {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: #008;
  background-image: url("backgrounds/lake-taupo.jpeg");
  background-size: cover;
  background-position: center center;
}

body > .shell > .taskbar {
  display: flex;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  height: 24px;

  background: #CCC;
  border-top: 1px outset #FFF;
  padding: 2px;
  color: #000;

  & > .taskbar-start {
    display: flex;
    font-weight: bold;
    border: 2px outset #FFF;
    padding-inline: 4px;
    justify-content: center;
    align-items: center;
    gap: 2px;

    &:active, &.active {
      border-style: inset;
    }
  }

  & > .taskbar-windows {
    flex-grow: 1;
  }

  & > .taskbar-status {
    display: flex;
    justify-content: center;
    align-items: center;

    border: 2px inset #FFF;
    padding: 8px;
  }
}

body > .shell > .start {
  position: fixed;
  left: 2px;
  bottom: 24px;

  display: flex;
  flex-direction: column;

  background: #CCC;
  border: 2px outset #FFF;
}

body > .wip {
  position: fixed;
  top: 8px;
  right: 8px;
  display: flex;
  padding: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 4px;
  outline: 1px solid rgba(255, 255, 255, 0.2);
}
