/* =========================
   BEAUTIFUL INFO CARDS
========================= */

.info-card,
.clinics-panel {
  background: #ffffff;
  border: 1px solid #d9e6f2;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(20, 70, 120, 0.08);
  animation: fadeInUp 0.28s ease;
}

.info-card-title,
.clinics-panel-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f4f92;
  margin-bottom: 6px;
}

.info-card-subtitle,
.clinics-panel-subtitle {
  font-size: 13px;
  line-height: 1.5;
  color: #6d7d90;
  margin-bottom: 14px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list-row {
  background: #f7fbff;
  border: 1px solid #e1eef9;
  border-radius: 14px;
  padding: 12px 14px;
}

.info-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #6c7b8a;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.info-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #17324d;
  line-height: 1.4;
}

.location-box {
  background: linear-gradient(135deg, #f8fbff 0%, #eef6fd 100%);
  border: 1px solid #dce9f7;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
}

.location-label {
  font-size: 13px;
  color: #5f7388;
  margin-bottom: 8px;
}

.location-value {
  font-size: 16px;
  font-weight: 800;
  color: #17324d;
  line-height: 1.5;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chat-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f67c5 0%, #29a2ff 100%);
  box-shadow: 0 8px 18px rgba(17, 115, 214, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.chat-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(17, 115, 214, 0.35);
  opacity: 0.96;
}

.chat-action-btn.secondary {
  background: #eef6ff;
  color: #0f5aa8;
  border: 1px solid #cfe3f8;
  box-shadow: none;
}

.outpatient-schedule-box {
  padding: 13px;
  background: #f6fbff;
  border: 1px solid #d7e9f8;
  border-radius: 18px;
}

.outpatient-schedule-title {
  margin-bottom: 8px;
  color: #0b4f8a;
  font-size: 14px;
  font-weight: 900;
}

.outpatient-schedule-hours {
  margin-bottom: 12px;
  color: #334155;
  font-size: 13px;
  line-height: 1.4;
}

.outpatient-schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.outpatient-day-card {
  padding: 10px 11px;
  background: #ffffff;
  border: 1px solid #e1edf7;
  border-radius: 14px;
}

.outpatient-day-title {
  margin-bottom: 6px;
  color: #0b5ca8;
  font-size: 13px;
  font-weight: 900;
}

.outpatient-day-card ul {
  margin: 0;
  padding-left: 18px;
}

.outpatient-day-card li {
  margin: 3px 0;
  color: #334155;
  font-size: 12.5px;
  line-height: 1.35;
}

.outpatient-appointments {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid #d7e9f8;
  color: #334155;
  font-size: 13px;
  line-height: 1.45;
}

.outpatient-note {
  margin-top: 10px;
}