body {
  font-family: sans-serif;
}

.world-wrapper {
  position: relative;
}

.world-canvas {
  border: 1px solid black;
  position: relative;
  background: darkseagreen;
  cursor: grab;
}

.toybox button {
  cursor: pointer;
}

.toybox button.item-active {
  color: transparent;
  text-shadow: 0 0 0 grey;
}

.entity {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.entity.creature .bubble {
  position: absolute;
  top: -110%;
  left: 30%;
  width: 100%;
  height: 100%;
  display: none;
}

.entity.creature .bubble::before {
  content: '💭';
  position: absolute;
  inset: 0;
  z-index: -1;
}

.entity.creature .bubble > span {
  font-size: 30%;
  position: absolute;
  top: 15%;
  right: 10%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 80%;
  text-align: center;
}

.status-item table {
  border-collapse: collapse;
}

.status-item table th,
.status-item table td {
  border: 1px solid;
  padding: 3px;
  text-align: left;
}
