.questions-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  /* Sitenin container stilinden bağımsız olacak şekilde ek düzenlemeler yapabilirsiniz */
  background-color: #fff;
}

.questions-list {
  list-style-type: none;
  padding: 0;
}

.questions-list li {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.questions-list li a {
  text-decoration: none;
  color: #3498db;
  font-weight: bold;
}

.questions-list li a:hover {
  text-decoration: underline;
}

.pager {
  margin-top: 20px;
  text-align: center;
}

/* Ana container */
.questions-results-container {
  margin: 2rem auto;
  max-width: 800px;
  background-color: #fff;        /* Beyaz arka plan */
  border-radius: 8px;           /* Kenar yuvarlatma */
  padding: 2rem;                /* İç boşluk */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

/* Başlık için */
.questions-results-container h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;           /* Ortala veya istediğiniz gibi konumlandırabilirsiniz */
}

/* Arama metnini gösteren paragraf */
.questions-results-container p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Liste yapısı */
.questions-results-list {
  list-style-type: disc;        /* Madde işaretleri disk şeklinde */
  margin-left: 1.5rem;          /* Soldan boşluk */
  margin-top: 1rem;
  line-height: 1.6;
}

/* Liste elemanları */
.questions-results-list li {
  margin-bottom: 0.5rem;        /* Elemanlar arasında boşluk */
}

/* Link stili */
.questions-results-list li a {
  text-decoration: none;
  color: #3498db;               /* Mavi ton */
  font-weight: 500;             /* Biraz kalın yazı */
  transition: color 0.2s ease;  /* Hover’da yumuşak geçiş */
}

/* Hover durumunda link */
.questions-results-list li a:hover {
  color: #2c3e50;               /* Daha koyu bir ton */
  text-decoration: underline;
}

/* Boş sonuçlar için */
.questions-results-container p:last-child {
  font-style: italic;
  color: #999;
}
/* SVG Başlık için örnek stil (isteğe bağlı) */
.custom-svg {
  display: block;
  margin: 0 auto;
  width: calc(100% - 20px);
  height: 100%;
  overflow: visible;
  padding: 0;
}
.custom-svg text {
  text-transform: uppercase;
  animation: stroke 5s infinite alternate;
  stroke-width: 2;
  stroke: #1999f7;
  font-size: 120px;
  dominant-baseline: central;
  text-anchor: middle;
}
@keyframes stroke {
  0% {
    fill: rgba(72, 138, 20, 0);
    stroke: #1999f7;
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 2;
  }
  70% {
    fill: rgba(72, 138, 20, 0);
    stroke: #1999f7;
  }
  80% {
    fill: rgba(72, 138, 20, 0);
    stroke: #1999f7;
    stroke-width: 3;
  }
  100% {
    fill: #1999f7;
    stroke: #1999f7;
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}