/* ================= ÜYELER SAYFASI ================= */
.uyeler-sayfa {
  padding-bottom: 3rem;
}

/* ---------- ARAMA ---------- */
.uyeler-arama {
  margin-bottom: 1.5rem;
}

.arama-kutu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 420px;
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 10px;
  padding: 0.35rem 0.35rem 0.35rem 0.9rem;
  transition: box-shadow .15s ease;
}

.arama-kutu:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .18);
  border-color: #86b7fe;
}

.arama-ikon {
  color: #6c757d;
  font-size: 1rem;
}

.arama-kutu input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  outline: none;
  color: #212529;
}

.arama-btn {
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 8px;
  background: #0d6efd;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s ease;
}

.arama-btn:hover {
  background: #0b5ed7;
}

.arama-temizle {
  color: #6c757d;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.25rem;
  transition: color .15s;
}

.arama-temizle:hover {
  color: #dc3545;
}

/* ---------- KART IZGARA ---------- */
.uyeler-izgara {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

/* ---------- ÜYE KARTI ---------- */
.uye-kart {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 1.75rem 1rem;
  text-align: center;
  transition: box-shadow .25s ease, transform .25s ease;
}

.uye-kart:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/* Avatar */
.uye-avatar {
  width: 76px;
  height: 76px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0,0,0,.15);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

/* Deterministik renkler (id'ye göre sabit) */
.renk-mavi    { background: linear-gradient(135deg, #4dabf7, #228be6); }
.renk-kirmizi { background: linear-gradient(135deg, #ff6b6b, #fa5252); }
.renk-yesil   { background: linear-gradient(135deg, #69db7c, #40c057); }
.renk-turuncu { background: linear-gradient(135deg, #ffa94d, #fd7e14); }
.renk-mor     { background: linear-gradient(135deg, #9775fa, #7950f2); }
.renk-pink    { background: linear-gradient(135deg, #f06595, #e64980); }
.renk-teal    { background: linear-gradient(135deg, #20c997, #12b886); }
.renk-cyan    { background: linear-gradient(135deg, #22b8cf, #15aabf); }

.uye-ad {
  font-size: 1.05rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.uye-kadi {
  display: block;
  font-size: 0.85rem;
  color: #868e96;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.uye-tarih {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #adb5bd;
}

/* ---------- SAYFALAMA ---------- */
.sayfalama {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.sf-ok,
.sf-no,
.sf-nokta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.6rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.sf-no {
  color: #495057;
  text-decoration: none;
  background: #fff;
  border: 1px solid #dee2e6;
  transition: background .15s, color .15s;
}

.sf-no:hover {
  background: #e9ecef;
}

.sf-no.aktif {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.sf-ok {
  color: #0d6efd;
  text-decoration: none;
  background: #fff;
  border: 1px solid #dee2e6;
}

.sf-ok.pasif {
  color: #adb5bd;
  cursor: default;
}

.sf-nokta {
  color: #adb5bd;
  cursor: default;
}

/* ---------- MOBİL UYUM ---------- */
@media (max-width: 576px) {
  .uyeler-izgara {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .uye-kart {
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
  }

  .uye-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .uye-ad {
    font-size: 0.95rem;
  }
}