/* Small custom overrides that go beyond Tailwind utility classes */

.dt-buttons .dt-button {
  background-color: #ea580c !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0.5rem !important;
  padding: 0.4rem 0.9rem !important;
  margin-right: 0.4rem !important;
  font-size: 0.8rem !important;
}
.dt-buttons .dt-button:hover {
  background-color: #c2410c !important;
}

table.dataTable thead th {
  white-space: nowrap;
}

/* ---- Print rules --------------------------------------------------- */
@media print {
  body * { visibility: hidden; }
  #printArea, #printArea * { visibility: visible; }
  #printArea {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .no-print { display: none !important; }
}
