#apps {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app-row {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.app {
  margin: 1em;
  padding: 2em;
  border: 1px solid var(--bp-light-gray);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 200px;
  width: 200px;
  background-color: var(--bp-light-gray);
}
.app:hover {
  cursor: pointer;
  filter: drop-shadow(0 0 3px var(--bp-input-hover));
  box-shadow: inset 0 0 3px var(--bp-input-hover);
  border: 1px solid var(--bp-input-hover);
}
.app-status {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.app-status > div {
  align-self: stretch;
  padding: 0.25em 0.5em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.app-status-icon {
  opacity: 0;
  flex: 1;
  align-self: stretch;
  text-align: right;
  padding-right: 0.5em;
}
.app-status-count {
  flex: 1;
  text-align: right;
}
.app-status > div:hover > .app-status-icon {
  opacity: 1;
}
