.focus-toggle-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(248, 242, 228, 0.18);
  background: rgba(248, 242, 228, 0.08);
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.focus-toggle-button:hover,
.focus-toggle-button:focus-visible {
  border-color: rgba(248, 242, 228, 0.34);
  background: rgba(248, 242, 228, 0.14);
  transform: translateY(-1px);
}

body.focus-mode [data-focus-optional="true"] {
  display: none !important;
}
