/* Shared view-toggle pill — used on /dashboard and /whiteboards */
.view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 0.85rem;
}

.view-toggle a {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  color: #555;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.view-toggle a:hover {
  color: #222;
}

.view-toggle a.active {
  background: #ffd7a9;
  color: #6b3a12;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.view-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 0.4rem 0 1.2rem;
}
