/* Customizacoes alem do Tailwind CDN */

#modal { transition: opacity 150ms ease-out; }

#modal-body::-webkit-scrollbar,
#tabela-body::-webkit-scrollbar { width: 8px; height: 8px; }
#modal-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

table thead th { white-space: nowrap; }

.spin {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid #cbd5e1; border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: -2px; margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }
