.gazete-card {
  border: none;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: #222;
  padding: 12px 8px;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden; /* Ripple içeride kalsın */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px; /* ✅ İkon yoksa da yüksekliği korusun */
  text-align: center;
}

/* Masaüstü gölge */
@media (min-width: 768px) {
  .gazete-card {
    box-shadow: 0 3px 6px rgba(0,0,0,0.12), 0 3px 6px rgba(0,0,0,0.08);
  }
  .gazete-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.20), 0 6px 6px rgba(0,0,0,0.15);
  }
}

.gazete-logo {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -25px;
  overflow: hidden;
}
.gazete-logo img {
  max-width: 100%;   /* ✅ genişlik kutuya tam oturur */
  max-height: 100%;  /* ✅ yükseklik kutuya tam oturur */
  object-fit: contain; /* ✅ logolar orantılı küçülür */
  display: block;
}

.gazete-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0;
  line-height: 1.2;
  transition: color 0.3s ease;
  word-break: break-word; /* ✅ Uzun isimler taşmasın */
}
.gazete-card:hover .gazete-name {
  color: #1976d2;
}

/* Ripple efekti */
.gazete-card .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  background-color: rgba(25, 118, 210, 0.25); /* ✅ Material mavi */
  pointer-events: none;
}
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


.kategori-list li a {
  display: block;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  color: #212529 !important; /* normal gri */
  transition: all 0.2s ease-in-out;
}
.kategori-list li a:hover {
  background-color: #dc3545 !important; /* kırmızı arka plan */
  color: #fff !important;              /* beyaz yazı */
}
.kategori-list li a.active {
  font-weight: bold;
  color: #dc3545 !important; /* aktif kırmızı */
}
.kategori-list li a.active:hover {
  background-color: #dc3545 !important; /* arka plan kırmızı */
  color: #fff !important;               /* yazı beyaz */
}


.kategori-list li a.active:hover {
  background-color: #dc3545 !important;
  color: #fff !important;
}

/* Buton özelleştirme */
  .submit-btn {
    display:inline-block;
    font-size:20px;
    padding:12px 40px;
    transition:all 0.3s ease;
  }
  .submit-btn:hover {
    transform:scale(1.05);
    box-shadow:0 4px 12px rgba(0,0,0,0.2);
  }

