#text-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 500;
}

/* Prototypes are always hidden */
.prototype {
  display: none;
}

.text-bubble {
  background-color: transparent;
  border: none;
  border-radius: 8px;
  padding: 4px;
  text-align: center;
  word-break: break-word;
  text-shadow:
    -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000,
    -2px 0 0 #000, 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000;
  /* Thicker outline */
  font-family: "Verdana", sans-serif;
  font-weight: 900;
  font-size: 14px;
  max-width: 180px;
  white-space: normal;
}

.text-window {
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  text-align: center;
}

.character-element-bar {
  margin: 0px auto;
  width: 32px;
  background-color: black;
  border: 1px solid black;
}

.value-health {
  background-color: green;
  height: 2px;
  width: 100%;
}

.value-mana {
  background-color: blue;
  height: 2px;
  width: 100%;
}

/* Skull + Name row */
.skull-name-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.skull-icon {
  width: 11px;
  height: 11px;
  background-image: url('/png/skulls.png');
  background-repeat: no-repeat;
  image-rendering: pixelated;
  margin-right: 2px;
  flex-shrink: 0;
}

/* NPC Icon styles */
.npc-icon {
  display: block;
  width: 16px;
  height: 16px;
  margin: 4px auto 0 auto;
  margin-left: 40px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.8));
}