/* TRUEPEAK_CREATOR_STUDIO_SWITCHER_V1 */
.tp-studio-switcher {
  position: fixed;
  top: 12px;
  right: 14px;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px;
  border: 1px solid rgba(180,151,255,.24);
  border-radius: 14px;
  background: rgba(12,10,24,.90);
  box-shadow: 0 12px 34px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
  font: 700 12px/1.2 Inter,ui-sans-serif,system-ui,sans-serif;
}

.tp-studio-switcher a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 9px;
  color: #f7f5ff;
  text-decoration: none;
  white-space: nowrap;
}

.tp-studio-switcher a:hover,
.tp-studio-switcher a:focus-visible {
  background: rgba(139,92,246,.22);
  outline: none;
}

.tp-studio-switcher .tp-current {
  background: rgba(139,92,246,.32);
}

@media (max-width: 700px) {
  .tp-studio-switcher {
    left: 8px;
    right: 8px;
    top: 8px;
    justify-content: center;
    overflow-x: auto;
  }
}
