/* Custom styles for components that need specific styling beyond Tailwind */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.text-transparent {
  color: transparent;
}

/* Progress bar styles */
.progress-indicator {
  transition: transform 0.3s ease;
}

/* Tab styles */
.tab-active {
  background-color: rgb(255 255 255);
  color: rgb(15 23 42);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

/* Modal backdrop */
.modal-backdrop {
  backdrop-filter: blur(8px);
}

/* Scrollbar styles */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgb(241 245 249);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgb(203 213 225);
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgb(148 163 184);
}

/* Dark mode scrollbar */
.dark .custom-scrollbar::-webkit-scrollbar-track {
  background: rgb(30 41 59);
}

.dark .custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgb(71 85 105);
}

.dark .custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgb(100 116 139);
}
