/* Custom styles for Annie Pie CPIMS mockup */
.nav-item.active {
  background-color: rgba(255,255,255,0.1);
}

.nav-item:not(.active):hover {
  background-color: rgba(255,255,255,0.05);
}

/* Smooth page transitions */
.page-content {
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Custom scrollbar */
main::-webkit-scrollbar {
  width: 6px;
}

main::-webkit-scrollbar-track {
  background: transparent;
}

main::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

main::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Table row hover */
tbody tr {
  transition: background-color 0.15s ease;
}
