/* Styles adicionais e animações */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 0.4s ease-out forwards;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #090d16;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Print Styles para PDF */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
  header, footer, #auditForm, #copySchemaBtn, #printReportBtn {
    display: none !important;
  }
  .bg-slate-900\/80, .bg-slate-900\/50, .bg-slate-900\/60 {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #000000 !important;
  }
  .text-white { color: #000000 !important; }
  .text-slate-400, .text-slate-300 { color: #475569 !important; }
  pre {
    background: #f8fafc !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
  }
}
