/* Correcao de layout COTECE: garante que apenas <html> seja o unico ancestral com
   overflow-x controlado, restaurando overflow normal em <body> e #root para que
   position:sticky da sidebar/topbar volte a funcionar (nao criar scroll containers
   aninhados extras). Carregar depois do CSS principal do painel. */
html {
  overflow-x: hidden;
}

body,
#root {
  overflow-x: visible;
  overflow-y: visible;
}
