.empty-state {
  grid-column: 1 / -1;
  padding: 70px 20px;
  text-align: center;
}

.empty-state > div {
  margin-bottom: 12px;
  font-size: 55px;
}

.empty-state h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.empty-state p {
  margin-bottom: 23px;
  color: var(--muted);
}

.toast {
  position: fixed;
  z-index: 2000;
  right: 25px;
  bottom: 25px;
  padding: 13px 18px;
  color: white;
  background: var(--green-900);
  border-radius: 9px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: .25s;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  transform: translateY(0);
}

.toast.show:hover {
  transform: translateY(-2px);
}

.toast.show:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    text-align: center;
  }
}

