/* Highlight for contract modifications */
.contract-modification-highlight {
  background-color: #fef3c7; /* yellow-100 */
  padding: 2px 4px;
  border-radius: 3px;
  animation: highlight-fade 3s ease-out;
}

@keyframes highlight-fade {
  0% {
    background-color: #fde047; /* yellow-300 */
  }
  100% {
    background-color: #fef3c7; /* yellow-100 */
  }
}

/* Highlight for contract excerpts (persistent) */
.contract-excerpt-highlight {
  background-color: #fde047; /* yellow-300 */
  padding: 2px 4px;
  border-radius: 3px;
}

