/* Custom styles for Lead Generator */

/* Smooth transitions */
* {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: ease-in-out;
  transition-duration: 150ms;
}

/* Table hover effect */
tbody tr:hover {
  background-color: #f9fafb;
}

/* Custom scrollbar for PLZ list */
.max-h-96::-webkit-scrollbar {
  width: 8px;
}

.max-h-96::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.max-h-96::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.max-h-96::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Focus styles */
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  ring: 2px;
  ring-offset: 2px;
}

/* Loading animation for running jobs */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
