/* Tab styles */
.tab-active {
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 600;
  border-radius: 9999px;
}
.tab-inactive {
  color: #6b7280;
  border-radius: 9999px;
}
.tab-inactive:hover {
  color: #374151;
  background-color: #f3f4f6;
}

/* Toast animations */
@keyframes toastSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes toastFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
.toast-enter {
  animation: toastSlideIn 0.3s ease-out;
}
.toast-exit {
  animation: toastFadeOut 0.3s ease-in forwards;
}

/* Sortable table headers */
th.sortable {
  cursor: pointer;
  user-select: none;
}
th.sortable:hover {
  background-color: #e5e7eb;
}
