:root {
  --hover-color: #cecece;
}

.content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.data {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
}

.legend {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.legend .available span,
.legend .unavailable span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0;
  border-right-width: 0.5rem;
  border-left-width: 0.5rem;
}

.legend .available span {
  border-color: darkgreen;
}

.legend .unavailable span {
  border-color: #cecece;
}