.evm-cal-trigger {
  appearance: none;
  font: inherit;
  cursor: pointer;
}

.header-action.evm-cal-trigger {
  padding: 0;
  border: 0;
  background: transparent;
}

.lead-booking .evm-cal-trigger {
  padding: 0;
  border: 0;
  color: var(--purple);
  background: transparent;
  font-size: inherit;
  font-weight: 850;
  text-decoration: underline;
}

.evm-booked-shell {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(19, 11, 48, .72);
  backdrop-filter: blur(14px);
}

.evm-booked-shell[hidden] {
  display: none;
}

.evm-booked-card {
  position: relative;
  width: min(650px, 100%);
  overflow: hidden;
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid rgba(168, 85, 247, .34);
  border-radius: 30px;
  color: #1a0f3d;
  background:
    radial-gradient(circle at 90% 8%, rgba(219, 39, 119, .14), transparent 18rem),
    radial-gradient(circle at 8% 100%, rgba(37, 99, 235, .13), transparent 20rem),
    #fff;
  box-shadow: 0 40px 110px rgba(12, 7, 31, .42);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.evm-booked-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #2563eb, #7c3aed, #db2777);
}

.evm-booked-check {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed 52%, #db2777);
  box-shadow: 0 18px 38px rgba(124, 58, 237, .28);
  font-size: 32px;
  font-weight: 900;
}

.evm-booked-kicker {
  margin-bottom: 9px;
  color: #be185d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.evm-booked-title {
  margin: 0;
  font: 850 clamp(34px, 7vw, 54px)/1 Poppins, Inter, sans-serif;
  letter-spacing: -.045em;
}

.evm-booked-time {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(124, 58, 237, .2);
  border-radius: 15px;
  color: #4c3494;
  background: rgba(245, 239, 255, .78);
  font-weight: 800;
}

.evm-booked-copy {
  margin: 18px 0 0;
  color: #625b78;
  font-size: 16px;
  line-height: 1.65;
}

.evm-booked-next {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  color: #31225f;
  background: linear-gradient(135deg, rgba(239, 246, 255, .92), rgba(253, 242, 248, .92));
}

.evm-booked-next strong {
  display: block;
  margin-bottom: 5px;
  font-family: Poppins, Inter, sans-serif;
}

.evm-booked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.evm-booked-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font: 800 14px Inter, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.evm-booked-action-primary {
  color: #fff;
  background: linear-gradient(120deg, #2563eb, #7c3aed, #db2777);
}

.evm-booked-action-secondary {
  color: #5b21b6;
  border: 1px solid rgba(124, 58, 237, .25);
  background: #fff;
}

@media (max-width: 560px) {
  .evm-booked-actions,
  .evm-booked-action {
    width: 100%;
  }
}

