/* Shared page chrome (nav toggles, home button, pagination, base pill
   button) used across every screen. Built by js/chrome.js. */

.pill-btn {
  background: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #090909;
  cursor: pointer;
}

.pill-btn svg {
  width: 24px;
  height: 24px;
  display: block;
  vertical-align: middle;
}

.toggles {
  position: absolute;
  top: 20px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pill-group {
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
}

.pill-group button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 40px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.16px;
  color: #fff;
  transition: background 200ms ease, color 200ms ease;
}

.pill-group button.is-active {
  background: #fff;
  color: #272727;
}

.home-btn-group {
  position: absolute;
  top: 20px;
  left: 28px;
}

.home-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 100px;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.home-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pager-btn {
  border: none;
  border-radius: 100px;
  width: 105px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pager-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.pager-btn--back {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.pager-btn--back svg {
  transform: rotate(180deg);
}

.pager-btn--forward {
  background: #fff;
  color: #090909;
}

.pager-btn.is-disabled {
  opacity: 0.35;
  cursor: default;
}
