/* Cantaloupe – minimal custom styles */

body { background-color: #f8f9fa; }

.navbar-brand { letter-spacing: .03em; }

.card { border-radius: .6rem; }
.card-header { border-radius: .6rem .6rem 0 0 !important; }

/* Make tables look cleaner inside cards */
.table th { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: #6c757d; }

/* Pulse animation for new scan rows */
@keyframes highlight-row {
  0%   { background-color: rgba(255, 193, 7, .4); }
  100% { background-color: transparent; }
}
.row-new { animation: highlight-row 1.5s ease-out; }
