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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gentlePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes contextHighlight {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  30% {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes contextHighlightRow {
  0% {
    background-color: rgba(59, 130, 246, 0.3);
    box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.6);
  }
  100% {
    background-color: transparent;
    box-shadow: inset 0 0 0 0 transparent;
  }
}

.tool-result-block.context-highlight {
  animation: contextHighlight 1.5s ease-out;
  border-radius: 12px;
}

.data-table tbody tr.context-highlight-row {
  animation: contextHighlightRow 2s ease-out;
}