/* Small additions Tailwind's CDN build can't cover (no custom config file on the CDN build). */

* {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 8px;
}

.h-4\.5 { height: 1.125rem; }
.w-4\.5 { width: 1.125rem; }

@media print {
  .no-print { display: none !important; }
  body { background: #fff !important; }
}

.animate-fade-in {
  animation: fadeIn 0.25s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
