@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
}

/* Estilos de Impressão globais */
@media print {
  body * {
    visibility: hidden;
  }
  #print-modal, #print-modal * {
    visibility: visible;
  }
  #print-modal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: white;
    color: black;
    border: none;
    overflow: visible;
  }
  .no-print {
    display: none !important;
  }
}