/* Clean Custom Enhancements */
@layer utilities {
  .animate-slide-up {
    animation: slideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Custom Scrollbar for sleek appearance */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Button & Nav Tab Active States */
.tab-btn.active {
  background-color: #143D32;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(20, 61, 50, 0.2);
}

.member-filter-pill.active {
  background-color: #143D32 !important;
  color: #ffffff !important;
  border-color: #143D32 !important;
}

.tx-filter-pill.active {
  background-color: #143D32 !important;
  color: #ffffff !important;
}

/* Fix iOS tap highlight */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Glassmorphic border */
.border-subtle {
  border-color: rgba(0, 0, 0, 0.07);
}