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

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
.drag-drop-zone {
  border: 2px dashed #e2e8f0;
  transition: all 0.3s ease;
}

.drag-drop-zone.dragover {
  border-color: #3b82f6;
  background-color: #f3f4f6;
}

.progress-bar {
  transition: width 0.3s ease;
}

.file-input-label {
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-input-label:hover {
  background-color: #f3f4f6;
}

.required-field::after {
  content: '*';
  color: #ef4444;
  margin-left: 4px;
}

.column-select {
  max-height: 300px;
  overflow-y: auto;
}

.error-message {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

@media print {
  body {
    margin: 0;
    padding: 0;
    font-size: 12pt; /* Ajuste o tamanho da fonte conforme necessário */
    height: 100vh; /* Ajusta a altura para caber na página */
    overflow: hidden; /* Evita que o conteúdo transborde */
  }

  /* Ajuste a largura da tabela para caber na página */
  table {
    width: 100%;
    border-collapse: collapse;
  }

  th, td {
    padding: 8px;
    border: 1px solid #000; /* Adiciona bordas para melhor visualização */
  }

  /* Esconder elementos que não devem aparecer na impressão */
  .no-print {
    display: none;
  }
}
