/* =========================
   GLOBAL UI
========================= */
.dic-section {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* =========================
   HEADER GLASS STYLE
========================= */
.alex_header {
  backdrop-filter: blur(10px);
  border-radius: 18px;
}

/* =========================
   BEAUTIFUL SELECT BOXES
========================= */
.alex_select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  background: #fff;
  color: #111;
  font-weight: 500;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
  cursor: pointer;
}

.alex_select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

/* =========================
   DOCTOR CARD
========================= */
.alex-card {
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 18px;
}

.alex-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* =========================
   CIRCULAR IMAGE
========================= */
.doc-img-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 12px;
}

.doc-img-wrapper img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #dbeafe;
  transition: transform 0.3s ease;
}

.alex-card:hover .doc-img-wrapper img {
  transform: scale(1.05);
}

/* =========================
   VERIFIED BADGE (ON IMAGE)
========================= */
.verified-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #22c55e;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* =========================
   TEXT STYLES
========================= */
.alex-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  color: #111;
}

.alex-card p {
  font-size: 13px;
  color: #6b7280;
}

/* =========================
   BUTTON
========================= */
.doc-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 14px;
  font-size: 12px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.2s;
}

.doc-btn:hover {
  transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .doc-img-wrapper {
    width: 90px;
    height: 90px;
  }

  .doc-img-wrapper img {
    width: 90px;
    height: 90px;
  }
  
  .pxy {
    padding:4px 3px !important;
    font-size:12px !important;
}

}

.border-gray-thin {
  border: 1px solid #e5e7eb !important;
  border-radius: 5px !important;
}
.pxy {
    padding:8px 12px !important;
}

.alex-card {
  border: 1px solid #e5e7eb !important;
  border-radius: 5px !important;
  margin-top:20px !important;
}