main {
  text-align: left;
}

header {
  display: flex;
  align-items: center;
  margin-right: 36px;
  margin-bottom: 32px;
  /* this sucks, and i dont care 😎 */
  transform: translateY(-12px);
}

header > a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  margin: 0px;
  transform: translateX(-12px);

  transition: background-color 100ms;
}

header > a:hover {
  background: #333;
}

header > a > img {
  margin-right: 2px;
}

header > h1 {
  flex-grow: 1;
  margin: 0;

  color: var(--window-fg);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

section h2 {
  text-align: inherit;

  color: var(--window-fg);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

ul.actions {
  gap: 8px;
}

ul.actions li.double-icon {
  gap: 8px;
}

ul.actions li.double-icon > span {
  flex-grow: 1;
  text-align: left;
}

.action-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.action-row a {
  color: var(--window-fg);
  text-decoration: none;
}

.action-row .action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0;
}
