* {
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  overflow: hidden;
  background-color: antiquewhite;
}

canvas {
  border: 6px solid;
  border-radius: 12px;
}

button {
  cursor: pointer;
}

#dayCounter {
  position: absolute;
  top: 12%;
  left: calc(50% - 35px);
  color: rgb(0, 0, 0);
  font-size: 20px;
}

#waterBtn:hover, #harvestBtn {
  cursor: pointer;
}

#plantInfo, #toolbar {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 10px 14px;
  width: 100%;
  border: solid 6px;
}

#plantInfo {
  text-align: center;
}

#plantInfoImage {
  border: solid;
  border-radius: 12px;
}

#plantInfoTitle {
  font-size: 32px;
  border: none;
}

#plantInfoDetails.hidden {
  display: none;
}

#plantInfoDetails div {
  width: 100%;
  border: solid 2px black;
  margin: 1px;
  border-radius: 20px;
  font-size: 20px;
}

#emptyPlantInfo, #emptyInventory {
  color: #888;
  font-size: 14px;
}

#gameContainer {
  display: flex;
  justify-content: center;
  height: 732px;
  margin-top: 10vh;
  user-select: none;
}

#openPlantInventory {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#inventoryText, #openPlantSelection {
  font-size: 28px;
}

.collectedPlant {
  display: flex;
  justify-content: space-between;
}

.plantSeed {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.plantPrice {
  cursor: default;
}

