.tile {
  background-color: #444;
  border-radius: 0.5em;
  overflow: hidden;
}

.tile-header {
  display: flex;
  justify-content: left;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: #222;
}


/* Tile centerfit */
.tile-centerfit {
  width: fit-content;
  margin: 0 auto;
}


/* Status bar */

.status-light {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  display: inline-block;
}

.status-green { background-color: #4caf50; }
.status-orange { background-color: #f0ad4e; }
.status-red { background-color: #d9534f; }