#gallery {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 5px;
}

.saved-items {
  justify-items: center;
  max-height: 85vh;
  overflow-y: auto;
}

.saved-items > * {
  margin-bottom: 1rem;
}

.load-button {
  padding: 0;
  width: 12rem;
  height: 2rem;
}

.delete-button {
  background-color: var(--warning-dark);
  color: var(--text);
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
}

.delete-button:hover {
  background-color: var(--warning-light);
}

.confirm-delete-button {
  background-color: var(--warning-dark);
  color: var(--text-light);
}

.confirm-delete-button:hover {
  background-color: var(--warning-light);
}
