/* WELLA ULTIME CHALLENGE AWARD 2026 - Custom Styles */

/* Smooth scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
*::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}
*::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

/* Table header sticky */
thead th {
  position: sticky;
  top: 0;
  background-color: #f8fafc;
  z-index: 1;
}

/* Fade-in for table rows */
tbody tr {
  animation: fadeIn 0.3s ease-out both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(0); }
}

/* KPI Card hover */
.kpi-card:hover {
  transform: translateY(-2px);
  transition: transform 0.2s;
}
