/* Custom Scrollbars and Cockpit Styles */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0B0E14;
}
::-webkit-scrollbar-thumb {
  background: #222D42;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #32405D;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Tab buttons active transition */
.tab-btn {
  white-space: nowrap;
  user-select: none;
}

/* Pulsing and glow indicators */
@keyframes race-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.03); }
}
.animate-race-pulse {
  animation: race-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Card hover lifts */
.item-card {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}
.item-card:hover {
  transform: translateY(-2px);
}

/* Print Styles */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
  header, #heroCard, .tab-btn, #btnOpenAddCustomItem, button, .no-print {
    display: none !important;
  }
  #printableReport {
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #000 !important;
  }
}