:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-237638e *//* YEB | Laboratuvarlar modern liste tasarımı */
.yeb-labs-wrapper {
  max-width: 960px;
  margin: 30px auto;
  padding: 20px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.yeb-labs-title {
  margin: 0 0 16px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: #1a202c;
}

.yeb-labs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hem link hem normal div için ortak kart görünümü */
.yeb-lab-card {
  display: block;
  text-decoration: none;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #ebf4ff 0, #e2e8f0 40%, #edf2f7 100%);
  padding: 10px 18px;
  box-shadow: 0 2px 6px rgba(148, 163, 184, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative;
  overflow: hidden;
}

.yeb-lab-card--nolink {
  cursor: default;
}

.yeb-lab-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at top right, rgba(66, 153, 225, 0.15), transparent 60%);
  transition: opacity 0.18s ease;
}

.yeb-lab-card:hover::before {
  opacity: 1;
}

.yeb-lab-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(107, 114, 128, 0.55);
}

.yeb-lab-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.yeb-lab-name {
  font-weight: 600;
  color: #1f2933;
  font-size: 0.98rem;
}

.yeb-lab-resp {
  font-size: 0.90rem;
  color: #4a5568;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(203, 213, 224, 0.8);
  white-space: nowrap;
}

/* Küçük ekranlar için: alt alta hizalama */
@media (max-width: 640px) {
  .yeb-lab-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .yeb-lab-resp {
    white-space: normal;
  }
}/* End custom CSS */