@tailwind base;
@tailwind components;
@tailwind utilities;

/* Responsividade Global */
html, body {
  min-height: 100vh;
  background-color: #1D1E2B;
}

/* Previne double-tap zoom em botoes no mobile */
button, .btn-cmd {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

/* Cards responsivos */
@media (max-width: 640px) {
  .break-all {
    word-break: break-all;
  }
}
