.kt-switcher {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.kt-switcher a {
  min-height: 2.55rem;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.42rem;
  color: inherit;
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  text-decoration: none;
}

.kt-switcher a[aria-current="true"] {
  background: rgba(48, 198, 142, 0.16);
  border-color: #30c68e;
}

.kt-switcher--compact a small,
.kt-switcher--compact a:not([aria-current="true"]) {
  display: none;
}

.kt-switcher--buttons a small {
  display: inline;
}

.kt-switcher--dropdown {
  position: relative;
}

.kt-switcher--dropdown summary {
  min-height: 2.55rem;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.55rem;
  cursor: pointer;
  list-style: none;
}

.kt-switcher--dropdown summary::-webkit-details-marker {
  display: none;
}

.kt-switcher--dropdown summary i {
  margin-inline-start: auto;
  font-style: normal;
}

.kt-switcher--dropdown .kt-switcher__menu {
  position: absolute;
  z-index: 1000;
  inset-block-start: calc(100% + 0.45rem);
  inset-inline-end: 0;
  min-width: 13rem;
  display: grid;
  gap: 0.2rem;
  padding: 0.45rem;
  background: #07110d;
  border: 1px solid rgba(48, 198, 142, 0.32);
  border-radius: 0.7rem;
  box-shadow: 0 1rem 3rem rgba(0, 20, 14, 0.3);
  color: #fff;
}

.kt-switcher--dropdown .kt-switcher__menu a {
  width: 100%;
}

.kt-switcher-auto--floating_bottom_right {
  position: fixed;
  z-index: 150;
  inset: auto 1rem 1rem auto;
  padding: 0.4rem;
  background: #07110d;
  border: 1px solid rgba(48, 198, 142, 0.35);
  border-radius: 0.7rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.kt-switcher-auto--footer {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background: #07110d;
  color: #fff;
}

.kt-translatable {
  outline: 1px dashed rgba(48, 198, 142, 0.35);
  outline-offset: 3px;
  cursor: text !important;
}

.kt-translatable:hover,
.kt-translation-selected {
  outline: 2px solid #30c68e !important;
  background: rgba(48, 198, 142, 0.08) !important;
}

.kt-visual-editor {
  position: fixed;
  z-index: 999999;
  inset: 32px 0 0 auto;
  width: min(26rem, 92vw);
  display: grid;
  grid-template-rows: auto 1fr;
  background: #07110d;
  color: #fff;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.32);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.kt-visual-editor[data-open="true"] { transform: translateX(0); }
.kt-visual-editor header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.kt-visual-editor header button { width: 2.4rem; height: 2.4rem; background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; color: #fff; font-size: 1.2rem; }
.kt-visual-editor__body { display: grid; gap: 1rem; align-content: start; padding: 1.2rem; }
.kt-visual-editor label { display: grid; gap: 0.45rem; color: #aab9b2; font-size: 0.75rem; }
.kt-visual-editor textarea { width: 100%; padding: 0.8rem; background: #101d17; border: 1px solid #30483d; border-radius: 0.45rem; color: #fff; }
.kt-visual-editor__save { min-height: 3rem; background: #30c68e; border: 0; border-radius: 0.45rem; color: #07110d; font-weight: 800; }
