/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 5px;
}
.dark ::-webkit-scrollbar-track {
  background: #1e293b;
}
::-webkit-scrollbar-thumb {
  background: #4f46e5;
  border-radius: 5px;
}
.dark ::-webkit-scrollbar-thumb {
  background: #6366f1;
}
::-webkit-scrollbar-thumb:hover {
  background: #4338ca;
}
.dark ::-webkit-scrollbar-thumb:hover {
  background: #818cf8;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeIn {
  animation: fadeIn 0.3s ease-out;
}

/* Star rating */
.star-rating {
  color: #fbbf24;
  font-size: 14px;
}

/* Same blob animation as index.html */
@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}
.animate-blob {
  animation: blob 7s infinite;
}
.animation-delay-2000 {
  animation-delay: 2s;
}
.animation-delay-4000 {
  animation-delay: 4s;
}

/* Pulse animation - matching index.html */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.animate-pulse-slow {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Textarea min/max height */
textarea {
  min-height: 120px !important;
  max-height: 300px !important;
  resize: vertical !important;
}
