/* Estilização da scrollbar para navegadores Webkit */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Utilitários globais */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Prevenção de flashes de conteúdo não estilizado */
[v-cloak] {
  display: none;
}

/* Ajustes finos para transições */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Estilos de impressão */
@media print {
  .print\:hidden {
    display: none !important;
  }
  
  body {
    background: white;
    font-size: 12pt;
  }
  
  * {
    box-shadow: none !important;
    border-radius: 0 !important;
  }
  
  @page {
    margin: 1.5cm;
  }
}