/**
 * Custom Animations for LLM Daily Dashboard
 * These animations provide smooth transitions and visual feedback
 */

/* Fade in animation for cards and modals */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-in;
}

/* Gradient overlay for text preview truncation */
.result-preview-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1.5em;
  background: linear-gradient(to bottom, transparent, #F5F3EF);
}

.dark .result-preview-gradient::after {
  background: linear-gradient(to bottom, transparent, #252525);
}
