/* =====================================================================
   Theme switcher chrome — the small "Themes" pill that sits outside the
   phone frame on every theme page and returns to the picker (index.html).
   Shared by all six theme pages.
   ===================================================================== */

.theme-back {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .07);
  box-shadow: 0 6px 20px rgba(43, 35, 32, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink, #2B2320);
  font: 600 13px/1 "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  text-decoration: none;
  transition: transform .14s ease, box-shadow .2s ease;
}
.theme-back:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(43, 35, 32, .18); }
.theme-back:active { transform: scale(.97); }
.theme-back svg { width: 15px; height: 15px; }

/* Name of the theme currently being previewed */
.theme-back .tb-name {
  padding-left: 9px;
  margin-left: 1px;
  border-left: 1px solid rgba(0, 0, 0, .12);
  font-weight: 700;
  color: var(--leaf, #651C23);
}

@media (max-width: 900px) {
  .theme-back { top: 10px; left: 10px; padding: 7px 12px 7px 10px; font-size: 12px; }
}
