/* Genel .bk bağlantı stili */
.link-class {
  position: relative;
  color: black;
  text-decoration: none;
  font-family: 'Crete Round', serif;
  font-style: italic;
  transition: color 0.3s ease;
}

/* Henüz ziyaret edilmemiş link */
.link-class:link {
  color: black;
}

/* Ziyaret edilmiş link */
.link-class:visited {
  color: red; /* Mor */
}

/* Üzerine gelince renk değişimi */
.link-class:hover {
  color: blue; /* Mavi */
}

/* Tıklama anında */
.link-class:active {
  color: red; /* Kırmızı */
}

/* Alt çizgi efekti */
.link-class::after {
  content: "";
  position: absolute;
  left: 50%;                   /* Ortadan başlasın */
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: translateX(-50%) scaleX(0); /* Gerçekten ortala ve gizle */
  transform-origin: center;     /* Ortadan genişleyecek */
  transition: transform 0.3s ease;
}

/* Üzerine gelince ortadan iki yana genişlesin */
.link-class:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* İlan metni için */
.ilan-metin {
  font-family: 'Times New Roman'; 
  font-size: medium;
  line-height: normal;
}
