/* FOOTER */
#footer {
  height: 36px;
  background: var(--app-surface);
  border-top: 1px solid var(--app-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--app-text-3);
  flex-shrink: 0;
  white-space: nowrap;
}

#footer .footer-sep {
  color: var(--app-border);
}

#footer a {
  color: var(--app-text-3);
  text-decoration: none;
}

#footer a:hover {
  color: var(--app-accent);
}

#footer a:active {
  color: var(--app-accent-2);
}

@media print {
  #footer {
    display: none;
  }
}
