/* Custom scrollbar - light */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgb(212 212 216 / 0.5);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(161 161 170 / 0.7);
}

/* Custom scrollbar - dark */
.dark ::-webkit-scrollbar-thumb {
  background: rgb(63 63 70 / 0.5);
}
.dark ::-webkit-scrollbar-thumb:hover {
  background: rgb(82 82 91 / 0.7);
}

/* Scrollbar colors */
* {
  scrollbar-color: rgb(212 212 216 / 0.5) transparent;
  scrollbar-width: thin;
}
.dark * {
  scrollbar-color: rgb(63 63 70 / 0.5) transparent;
}

/* Report row hover glow */
tr.report-row:hover {
  box-shadow: inset 2px 0 0 rgb(99 102 241 / 0.3);
}
.dark tr.report-row:hover {
  box-shadow: inset 2px 0 0 rgb(99 102 241 / 0.4);
}

/* Focus ring for search */
input:focus {
  box-shadow: 0 0 0 1px rgb(99 102 241 / 0.3), 0 0 20px rgb(99 102 241 / 0.08);
}

/* Sidebar active glow - light */
aside nav a.bg-zinc-200\/50 {
  box-shadow: inset 2px 0 0 rgb(99 102 241 / 0.4);
}
/* Sidebar active glow - dark */
.dark aside nav a.dark\:bg-zinc-800\/50 {
  box-shadow: inset 2px 0 0 rgb(99 102 241 / 0.5);
}
