#buchanan-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#buchanan-modal {
  background: white;
  max-width: 500px;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  font-family: system-ui, sans-serif;
}

#buchanan-modal h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

#buchanan-modal p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #333;
}

/* 🔥 Apply styles to the Calendly button */
#buchanan-modal a.calendly-button {
  background-color: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* 🟥 Ensure hover color override */
#buchanan-modal a.calendly-button:hover {
  background-color: #e11d48 !important; /* Tailwind red-600 */
  transform: scale(1.05);
}

#buchanan-modal button {
  margin-top: 1.5rem;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #e5e5e5;
  cursor: pointer;
  font-size: 0.9rem;
}

#buchanan-modal button:hover {
  background-color: #ccc;
}

/* This will override all WordPress block and Tailwind-based hover styles */
a.buchanan-call-button.wp-block-button__link.wp-element-button:hover {
  background-color: #e11d48 !important; /* Red-600 */
  color: white !important;
  transform: scale(1.05);
}

a.button:hover {
  background-color: white !important; /* 🔴 red-600 */
  color: black !important;
  transform: scale(1.05);
  transition: all 0.2s ease-in-out;
}

