.favorites .col-md-6,
.favorites .col-lg-4,
.favorites .col-xl-3 {
  display: flex;
}

.profile-widget {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.profile-widget:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.profile-widget .doc-img {
  width: 100%;
  height: 180px; /* adjust this as needed */
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-widget .doc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-widget .title {
  min-height: 40px; /* ensures all titles occupy similar height */
  display: flex;
  align-items: center;
}

.profile-widget .speciality {
  min-height: 40px;
  max-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.pro-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pro-content .row-sm {
  margin-top: auto;
}

.forms-block {
  transition: all 0.3s ease;
}
.forms-block[style*="display: none"] {
  opacity: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.consultation-grid {
  margin-bottom: 10px;
}

.booking-btn {
  margin-top: 10px;
}

li .consultation-types a {
  width: 90% !important;
}

li .consultation-types a {
  width: 90% !important;
}

.consultation-list select {
  width: 90% !important;
}