.dab-therapist-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 16px;
}
.dab-therapist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.09);
}
.dab-therapist-media {
  width: 96px;
  flex-shrink: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.dab-therapist-media img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  display: block;
}
.dab-online-dot {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #10b981;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.18);
}
.dab-therapist-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dab-therapist-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dab-therapist-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 1rem;
  margin: 0;
}
.dab-therapist-title {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
}
.dab-therapist-meta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-direction: column;
}
.dab-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.9rem;
}
.dab-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  opacity: 0.9;
}
.dab-specialties {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dab-specialty-pill {
  background: #f1f5f9;
  color: #0f172a;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}
.dab-therapist-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
  flex-direction: column;
}
.dab-price {
  font-weight: 700;
  color: #0b74de;
}
.dab-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.dab-cta-primary {
  background-color: var(--accent-4);
  color: #fff !important;
}
.dab-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 116, 222, 0.12);
  color: #fff !important;
}
.dab-cta-ghost {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  padding: 8px 12px;
}
@media (max-width: 680px) {
  .dab-therapist-card {
    flex-direction: column;
    gap: 12px;
  }
  .dab-therapist-name {
    font-size: 0.96rem;
  }
}

/* Two cards per row on larger screens */
@media (min-width: 768px) {
  .dab-doctor-overview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  .dab-therapist-card {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }

  .dab-therapist-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Doctor detail page styles (extracted from inline styles) */
.dab-doctor-detail {
  max-width: 1100px;
  margin: 18px auto;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(11, 22, 39, 0.06);
  font-family: inherit;
}
.dab-detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: start;
}
.dab-detail-media {
  position: relative;
}
.dab-detail-media img {
  width: 100%;
  max-width: 120px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.dab-detail-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dab-detail-card {
  background: #fafafa;
  padding: 12px;
  border-radius: 8px;
}
.dab-therapist-name {
  font-size: 22px;
  font-weight: 700;
  display: block;
}
.dab-therapist-title {
  color: #556;
  font-size: 14px;
  margin-top: 4px;
}
.dab-therapist-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.dab-meta-item {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #334;
}
.dab-therapist-gender {
  font-size: 13px;
  color: #556;
}
.dab-specialties {
  margin-top: 10px;
}
.dab-specialty-pill {
  display: inline-block;
  background: #eaf2ff;
  color: #034;
  border-radius: 999px;
  padding: 6px 10px;
  margin: 4px 6px 4px 0;
  font-size: 13px;
}
.dab-main-section {
  padding: 6px;
}
.dab-section-title {
  font-weight: 700;
  margin: 12px 0 6px;
}
.dab-cta {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
}
.dab-cta-primary {
  background: #2563eb;
  color: #fff;
}
@media (max-width: 780px) {
  .dab-detail-grid {
    grid-template-columns: 1fr;
  }
  .dab-detail-media img {
    height: 260px;
  }
}
