.closebutton {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  background-color: rgb(235, 102, 102);
  margin-left: auto;
}

.windowheader {
  width: 100%;
  height: 30px;
  background-color: rgb(177, 177, 177);
  display: flex;
  border-radius: 8px;
  align-items: center;
  cursor: move;
  justify-content: center;
  margin-top: 0%;
}

.window {
  background-color: rgba(255, 255, 255, 0.821);
  display: flex;
  flex-direction: column;
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 25px;
  padding-top: 0px;
  border: solid;
  width: fit-content;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.selected {
  border: 2px solid rgb(25, 74, 220);
  border-radius: 10px;
  background-color: rgba(57, 127, 213, 0.425);
}