/* dictionary-popup.css */

/* 애니메이션 */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 단어 링크 스타일 */
a.dict-word {
  color: #6e8a3a;
  font-weight: bold;

}
a.dict-word:hover {
  color: #475925;

}

