.btn-enes {
  background: #ffffff4f; /* Beyaz arka plan */
  color: #000000;      /* Siyah yazı */
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 12px; /* Yuvarlak köşeler */
  text-decoration: none;
  display: inline-block;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.2s ease-in-out;
}

.btn-enes:hover {
  box-shadow: 0 0 10px rgb(255, 255, 255), 0 0 20px rgb(255, 255, 255);
  transform: translateY(-2px);
  color: #000000; /* Hover’da yazı rengi mavi */
}