/* NotaFlow Pro Language Runtime Hard Fix */
.language-switch{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px;
  border:1px solid var(--line,#e6eaf0);
  border-radius:999px;
  background:rgba(255,255,255,.94);
  box-shadow:0 12px 32px rgba(16,24,40,.12);
}
.language-switch .lang-option{
  min-width:36px;
  padding:7px 10px;
  border-radius:999px;
  color:var(--muted,#667085);
  font-size:12px;
  line-height:1;
  font-weight:1000;
  text-align:center;
  text-decoration:none;
}
.language-switch .lang-option.active{
  background:var(--primary,#183b56);
  color:#fff;
}
.nf-floating-language{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999999;
}
.nf-floating-language .language-switch{
  backdrop-filter:blur(16px);
}
@media(max-width:620px){
  .nf-floating-language{
    right:12px;
    bottom:12px;
  }
}
@media print{
  .nf-floating-language{display:none!important}
}
