/* =========================
   APPOINTMENTS RESPONSE
========================= */
.appointments-box {
  display: block;
}

.appointments-title {
  font-size: 15px;
  font-weight: 800;
  color: #0b4f8a;
  margin-bottom: 12px;
}

.appointment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.appointment-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #dbe8f4;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(13, 72, 124, 0.08);
}

.appointment-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d6fcb, #35a3ff);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 14px rgba(29, 111, 203, 0.20);
}

.appointment-content {
  flex: 1;
}

.appointment-name {
  font-size: 15px;
  font-weight: 800;
  color: #103b67;
  margin-bottom: 5px;
}

.appointment-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
}

.appointment-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.appointment-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 9px 14px;
  background: linear-gradient(135deg, #1d6fcb, #35a3ff);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 5px 12px rgba(29, 111, 203, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.appointment-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(29, 111, 203, 0.22);
  opacity: 0.96;
}

.appointment-note {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf6ff;
  border: 1px solid #cfe4fb;
  color: #0b5ca8;
  font-size: 12px;
  font-weight: 700;
}
.appointment-link.secondary {
  background: #eef6ff;
  color: #0b5ca8 !important;
  border: 1px solid #cfe2f6;
  box-shadow: none;
}

.appointment-link.secondary:hover {
  background: #e4f1ff;
  color: #094d90 !important;
}

.appointment-link.secondary {
  background: #eef6ff;
  color: #0b5ca8 !important;
  border: 1px solid #cfe2f6;
  box-shadow: none;
}

.appointment-link.secondary:hover {
  background: #e4f1ff;
  color: #094d90 !important;
}

.appointment-actions .appointment-link {
  min-width: 128px;
}