/* Priyuvaan Book Appointment Button Styling */
.theme-btn.btn-style-priyuvaan {
  background: linear-gradient(90deg, #0d47a1 0%, #1976d2 60%, #42a5f5 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 30px !important; /* Restored pill shape */
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.12) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding: 12px 32px !important;
  font-size: 1rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  transform: translateY(0) !important;
  z-index: 1 !important;
  text-decoration: none !important;
}

/* Header-specific button styling */
#header-book-appointment.theme-btn.btn-style-priyuvaan {
  padding: 10px 28px !important;
  font-size: 0.95rem !important;
}

/* Disable all default pseudo-element overlays */
.theme-btn.btn-style-priyuvaan:before,
.theme-btn.btn-style-priyuvaan:after {
  display: none !important;
  content: none !important;
}

/* Clean hover state with smooth gradient transition */
.theme-btn.btn-style-priyuvaan:hover, 
.theme-btn.btn-style-priyuvaan:focus {
  background: linear-gradient(90deg, #42a5f5 0%, #1976d2 60%, #0d47a1 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.18) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}

/* Ensure no pseudo-elements on hover */
.theme-btn.btn-style-priyuvaan:hover:before,
.theme-btn.btn-style-priyuvaan:focus:before,
.theme-btn.btn-style-priyuvaan:hover:after,
.theme-btn.btn-style-priyuvaan:focus:after {
  display: none !important;
  content: none !important;
}

/* Active state */
.theme-btn.btn-style-priyuvaan:active {
  transform: translateY(-1px) !important;
  transition: all 0.1s ease !important;
}
