/**
 * Custom CSS Styles for APD Management System
 */

/* Empty - semua styling sudah di inline dalam index.html menggunakan Tailwind */

/* Optional: Tambahkan custom animations atau utilities di sini */

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in-scale {
  animation: fadeInScale 0.3s ease-in-out;
}

/* Print styles untuk PDF */
@media print {
  body {
    background: white;
    margin: 0;
    padding: 0;
  }

  .sidebar,
  .topbar,
  .btn,
  .menu-item {
    display: none;
  }

  .container-main {
    display: block;
  }

  .main-content {
    margin-left: 0;
  }

  .modal {
    display: none !important;
  }

  .alert {
    display: none !important;
  }

  table {
    page-break-inside: avoid;
  }

  tr {
    page-break-inside: avoid;
  }
}
