html,
body {
  font-family:
    'Frutiger',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    'Helvetica Neue',
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  height: 100%;
  background: white;
}

@font-face {
  font-family: 'Frutiger';
  src: url('fonts/FrutigerLTCom-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Frutiger';
  src: url('fonts/FrutigerLTCom-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  height: 100%;
}

.columns {
  width: 100%;
  height: 100%;
}

.column {
  padding: 4px;
  margin: 4px;
  display: flex;
  flex-direction: column;
}

.column > .card.full-height {
  flex: 1;
}

.card-header {
  max-height: 18%;
}

.card-content {
  height: 82%;
  display: flex;
  flex-direction: column;
}

.bg-grey {
  background-color: #f5f5f5;
}

.card-content > .columns.full-height {
  flex: 1;
  margin: 0;
}

.columns.full-height > .card {
  flex: 1;
  margin: 0;
}

.actor-card {
  margin: 1em;
}

.sameHeightColumn {
  display: flex;
}

.inner {
  position: absolute;
}

article {
  overflow: auto;
  /* text-overflow: ellipsis; */
  justify-content: space-around;
}

.min-width-50 {
  min-width: 50%;
}

.zstack {
  display: grid;
  align-items: center;
  justify-items: center;
}

.zstack > * {
  grid-area: 1/1/1/1;
}

.hidden {
  visibility: hidden;
}

.column {
  padding: 4px;
  margin: 4px;
}

.column-element {
  background-color: rgb(245, 245, 245);
  border-radius: 10px;
}

.hstack {
  display: flex;
  flex-direction: column;
}

.vstack {
  display: flex;
  flex-direction: row;
}

.centered {
  align-items: center;
}

.hospital {
  background-color: #55ba9e;
}

.cloud {
  background-color: #87cac8;
}

.location-border {
  border-style: solid;
  border-radius: 15px;
  border-width: 5px;
}

.location-icon {
  aspect-ratio: 1/1;
  width: 100px;
}

.active-card {
  outline: 5px solid #3273dc;
  box-shadow: 0 0 20px rgba(50, 115, 220, 0.6);
  animation: glow 1.5s ease-in-out infinite alternate;
  transition:
    border 1.5s ease-in-out,
    box-shadow 0.5s ease-in-out;
}

@keyframes glow {
  from {
    box-shadow: 0 0 25px rgba(50, 115, 220, 0.5);
  }
  to {
    box-shadow: 0 0 50px rgba(50, 115, 220, 0.8);
  }
}
