/* Estilos complementares ao Tailwind (CDN) para o Componente Embarcável */

[x-cloak] {
  display: none !important;
}

/* Smooth transitions for sections */
section {
  transition: all 0.2s ease-in-out;
}

/* Toast animation */
.toast-enter {
  opacity: 0;
  transform: translateY(10px);
}
.toast-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

/* Custom scrollbar for history */
.history-scroll {
  max-height: 300px;
  overflow-y: auto;
}
.history-scroll::-webkit-scrollbar {
  width: 4px;
}
.history-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}
