/* RTL (default) - label shrinks to the right */
[dir="rtl"] .MuiFormControl-root:focus-within > label[data-shrink="false"],
[dir="rtl"] .MuiFormControl-root:has(input:not(:placeholder-shown)) > label[data-shrink="false"] {
  transform: translate(-14px, -9px) scale(0.75) !important;
  pointer-events: auto;
  user-select: none;
  max-width: calc(133% - 32px);
}

/* LTR (English) - label shrinks to the left */
[dir="ltr"] .MuiFormControl-root:focus-within > label[data-shrink="false"],
[dir="ltr"] .MuiFormControl-root:has(input:not(:placeholder-shown)) > label[data-shrink="false"] {
  transform: translate(14px, -9px) scale(0.75) !important;
  pointer-events: auto;
  user-select: none;
  max-width: calc(133% - 32px);
  background: white;
  padding: 0 6px;
}

.MuiFormControl-root:focus-within legend,
.MuiFormControl-root:has(input:not(:placeholder-shown)) legend {
  max-width: 100% !important;
}
