/* Automation Wizard Styles
 * Used by: app/views/campaigns/wizard/automation.html.erb
 * Step-specific form styles (shared wizard styles in wizard.css)
 * Design matches playground/automation_rules.html.erb
 */

/* ============================================
   FORM CARD SIZING
   ============================================ */

/* Fixed width form card to prevent layout shift when toggling reminders */
#schedule-form .wizard-form-card {
  min-width: 580px;
}

/* Max width for onboarding schedule form (matches playground design) */
.wizard-form-card--schedule-onboarding {
  max-width: 816px;
}

/* ============================================
   FORM SECTIONS
   ============================================ */

/* Section */
.schedule-section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eceff0;
}

.schedule-section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.schedule-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #000b14;
  margin-bottom: 12px;
}

/* Radio group */
.schedule-radio-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Radio option row */
.schedule-radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fafafa;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  min-height: 52px;
}

.schedule-radio-option:hover {
  background: #f5f5f5;
}

.schedule-radio-option--selected {
  background: #fff;
  box-shadow: inset 0 0 0 1px #000b14;
}

/* Hide native radio */
.schedule-radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Custom radio circle */
.schedule-radio-circle {
  width: 18px;
  height: 18px;
  border: 2px solid #d6d8d9;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.schedule-radio-option--selected .schedule-radio-circle {
  border-color: #000b14;
}

.schedule-radio-circle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000b14;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.schedule-radio-option--selected .schedule-radio-circle::after {
  opacity: 1;
}

/* Radio label */
.schedule-radio-label {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
}

/* Radio count badge */
.schedule-radio-count {
  font-size: 13px;
  font-weight: 500;
  color: #858a8e;
  padding: 4px 10px;
  background: #f0f1f2;
  border-radius: 12px;
}

/* ============================================
   DATE RANGE SECTION
   ============================================ */

.schedule-date-range-section {
  margin-top: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
}

.schedule-date-range-section.hidden {
  display: none;
}

.schedule-date-range-fields {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.schedule-date-field {
  flex: 1;
}

.schedule-date-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #52595f;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schedule-date-input {
  width: 100%;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #d6d8d9;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #000b14;
  cursor: pointer;
}

.schedule-date-input:focus {
  outline: none;
  border-color: #000b14;
}

.schedule-date-input::placeholder {
  color: #858a8e;
}

/* Contact counts wrapper */
.schedule-contact-counts-wrapper {
  margin-bottom: 16px;
  min-height: 64px;
}

/* Contact counts loader */
.schedule-contact-counts-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px dashed #d6d8d9;
}

.schedule-contact-counts-loader.hidden {
  display: none;
}

.schedule-loader-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-top-color: #000b14;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.schedule-loader-text {
  font-size: 13px;
  font-weight: 500;
  color: #858a8e;
}

/* Contact counts display */
.schedule-contact-counts {
  display: flex;
  gap: 12px;
}

.schedule-contact-counts.hidden {
  display: none;
}

.schedule-count-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  flex: 1;
}

.schedule-count-item--primary {
  border-left: 3px solid #22c55e;
}

.schedule-count-item--muted {
  border-left: 3px solid #d6d8d9;
}

.schedule-count-item--secondary {
  border-left: 3px solid #f59e0b;
}

.schedule-count-value {
  font-size: 20px;
  font-weight: 700;
  color: #000b14;
}

.schedule-count-item--muted .schedule-count-value {
  color: #858a8e;
}

.schedule-count-label {
  font-size: 12px;
  font-weight: 500;
  color: #52595f;
}

/* Helper text */
.schedule-helper-text {
  font-size: 13px;
  color: #52595f;
  line-height: 1.5;
  margin-top: 12px;
}

.schedule-helper-text strong {
  font-weight: 600;
  color: #000b14;
}

/* ============================================
   DELAY INLINE FIELDS
   ============================================ */

.schedule-delay-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.schedule-delay-inline.hidden {
  display: none;
}

.schedule-delay-unit {
  font-size: 14px;
  font-weight: 500;
  color: #52595f;
}

/* Timing description */
.schedule-timing-description {
  margin-top: 12px;
  padding: 12px 16px;
  background: #f0f7ff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #1e40af;
  line-height: 1.5;
}

/* ============================================
   WARNING MESSAGE
   ============================================ */

.schedule-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  margin-bottom: 16px;
}

.schedule-warning.hidden {
  display: none;
}

.schedule-warning-icon {
  width: 20px;
  height: 20px;
  color: #dc2626;
  flex-shrink: 0;
}

.schedule-warning span {
  font-size: 13px;
  font-weight: 500;
  color: #991b1b;
  line-height: 1.5;
}

/* ============================================
   FORM ROW PATTERN
   ============================================ */

.schedule-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fafafa;
  border-radius: 8px;
  min-height: 52px;
  margin-bottom: 6px;
}

.schedule-form-row:last-child {
  margin-bottom: 0;
}

.schedule-form-label {
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
  flex-shrink: 0;
}

/* Fields container (right side) */
.schedule-form-fields {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Toggle section */
.schedule-toggle-section {
  border-radius: 8px;
  overflow: hidden;
}

/* Toggle header row */
.schedule-toggle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fafafa;
  cursor: pointer;
  min-height: 52px;
}

.schedule-toggle-title {
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
}

/* Toggle switch */
.schedule-toggle-switch {
  position: relative;
  width: 40px;
  height: 20px;
  background: #d6d8d9;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.schedule-toggle-switch--active {
  background: #000b14;
}

.schedule-toggle-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.schedule-toggle-switch--active::after {
  transform: translateX(20px);
}

/* Toggle fields */
.schedule-toggle-fields {
  display: none;
}

.schedule-toggle-section--expanded .schedule-toggle-fields {
  display: block;
  margin-top: 6px;
}

/* Input styles */
.schedule-input {
  padding: 8px 12px;
  background: #fafafa;
  border: 1px solid #d6d8d9;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
}

.schedule-input:focus {
  outline: none;
  border-color: #000b14;
  background: #fff;
}

.schedule-input::placeholder {
  color: #858a8e;
  font-weight: 500;
}

.schedule-input--text {
  width: 220px;
}

.schedule-input--number {
  width: 70px;
  text-align: center;
}

/* Textarea */
.schedule-textarea {
  padding: 12px;
  background: #fff;
  border: 1px solid #d6d8d9;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #000b14;
  resize: vertical;
  min-height: 80px;
  width: 100%;
  font-family: inherit;
}

.schedule-textarea:focus {
  outline: none;
  border-color: #000b14;
}

.schedule-textarea::placeholder {
  color: #858a8e;
}

/* Stacked form row (label on top, field below) */
.schedule-form-row--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* Hidden state for form rows - ensure hidden class takes precedence */
.schedule-form-row.hidden {
  display: none;
}

.schedule-form-fields--full {
  width: 100%;
}

/* Field hint */
.schedule-field-hint {
  font-size: 12px;
  color: #858a8e;
  margin-top: 4px;
}

/* Checkbox styles */
.schedule-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #000b14;
}

.schedule-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #d6d8d9;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.schedule-checkbox:checked {
  background: #000b14;
  border-color: #000b14;
}

.schedule-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Select dropdown */
.schedule-select {
  padding: 8px 32px 8px 12px;
  background: #fafafa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23858a8e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 10px center no-repeat;
  border: 1px solid #d6d8d9;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
  appearance: none;
  cursor: pointer;
  min-width: 90px;
}

.schedule-select:focus {
  outline: none;
  border-color: #000b14;
  background-color: #fff;
}

/* Time range - same row pattern */
.schedule-time-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fafafa;
  border-radius: 8px;
  min-height: 52px;
}

.schedule-time-range-label {
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
}

/* Time fields container */
.schedule-time-fields {
  display: flex;
  align-items: center;
  gap: 8px;
}

.schedule-time-connector {
  font-size: 14px;
  font-weight: 600;
  color: #858a8e;
}

.schedule-time-input {
  padding: 8px 12px;
  background: #fafafa;
  border: 1px solid #d6d8d9;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #858a8e;
  width: 130px;
}

.schedule-time-input:focus {
  outline: none;
  border-color: #000b14;
  background: #fff;
  color: #000b14;
}

/* Submit button */
.schedule-wizard-submit {
  display: block;
  width: auto;
  margin: 20px auto 0;
  padding: 12px 48px;
  background: #000b14;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.schedule-wizard-submit:hover {
  background: #1a1a1a;
}

.schedule-wizard-submit--disabled {
  background: #d6d8d9;
  color: #858a8e;
  cursor: not-allowed;
}

.schedule-wizard-submit--disabled:hover {
  background: #d6d8d9;
}

/* ============================================
   SMART FIELD EDITOR
   ============================================ */

.schedule-smart-field-wrapper {
  position: relative;
  width: 100%;
}

.schedule-smart-field-editor {
  min-height: 80px;
  cursor: text;
}

.schedule-smart-field-editor:empty::before {
  content: attr(data-placeholder);
  color: #858a8e;
  pointer-events: none;
}

.schedule-smart-field-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: 1px solid #d6d8d9;
  border-radius: 6px;
  color: #52595f;
  cursor: pointer;
  transition: all 0.15s ease;
}

.schedule-smart-field-btn:hover {
  background: #fff;
  border-color: #000b14;
  color: #000b14;
}

/* ============================================
   ACTION LINK BUTTON (Change Contacts, Edit Date Range)
   ============================================ */

.schedule-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.schedule-action-link:hover {
  opacity: 0.7;
}

.schedule-action-link svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   LAUNCH BUTTON (Onboarding Flow)
   ============================================ */

.schedule-launch-btn {
  display: block;
  margin: 32px auto 0;
  padding: 16px 56px;
  background: #000b14;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

/* Gradient border effect */
.schedule-launch-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  padding: 2px;
  background: linear-gradient(90deg, #c1ceff 0%, #657ddb 50%, #8a0fd1 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.schedule-launch-btn:hover {
  transform: translateY(-1px);
}

.schedule-launch-btn:active {
  transform: translateY(0);
}

/* ============================================
   SCHEDULE-SPECIFIC RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 640px) {
  #schedule-form .wizard-form-card {
    min-width: auto;
  }

  .schedule-form-row,
  .schedule-time-range {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .schedule-form-fields,
  .schedule-time-fields {
    width: 100%;
    justify-content: flex-start;
  }

  .schedule-input--text {
    width: 100%;
  }

  .schedule-date-range-fields {
    flex-direction: column;
    gap: 12px;
  }

  .schedule-contact-counts {
    flex-direction: column;
    gap: 8px;
  }

  .schedule-delay-inline {
    margin-left: 0;
    margin-top: 8px;
  }

  .schedule-radio-option {
    flex-wrap: wrap;
  }

  .schedule-radio-count {
    margin-left: auto;
  }
}

/* ============================================
   SCHEDULE WIZARD DESIGN (Matches Playground)
   ============================================ */

/* Main card - matches playground design */
.schedule-wizard-card {
  @apply w-full max-w-[856px] bg-white border border-[#eceff0] rounded-[20px] overflow-hidden;
}

/* Sections */
.schedule-wizard-section {
  @apply p-6;
}

.schedule-wizard-section--border-top {
  @apply border-t border-[#eceff0];
}

/* Section header */
.schedule-wizard-section-header {
  @apply flex items-center gap-4 mb-4;
}

.schedule-wizard-section-title {
  @apply text-lg font-medium text-[#000b14] leading-6;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Toggle header */
.schedule-wizard-toggle-header {
  @apply flex items-center justify-between mb-4;
}

/* Radio circles */
.schedule-wizard-radio-circle {
  @apply w-5 h-5 border-2 border-[#d6d8d9] rounded-full flex-shrink-0 relative;
}

.schedule-wizard-radio-circle--small {
  @apply w-5 h-5;
}

/* Nested options */
.schedule-wizard-nested {
  @apply flex flex-col gap-2;
}

/* Radio option (clickable label) */
.schedule-wizard-radio-option {
  @apply flex items-center gap-4 px-4 py-[18px] bg-[#fafafa] rounded-lg min-h-[60px] cursor-pointer transition-colors duration-150;
  box-sizing: border-box;
}

.schedule-wizard-radio-option:hover {
  @apply bg-[#f5f5f5];
}

/* Selected state - uses schedule-radio-option--selected from radio-select controller */
.schedule-wizard-radio-option.schedule-radio-option--selected {
  @apply bg-[#f0f0f0];
}

.schedule-wizard-radio-option.schedule-radio-option--selected .schedule-wizard-radio-circle {
  @apply border-[#000b14];
}

.schedule-wizard-radio-option.schedule-radio-option--selected .schedule-wizard-radio-circle::after {
  content: "";
  @apply absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-2.5 h-2.5 bg-[#000b14] rounded-full;
}

/* Inline fields for "Send X days after" */
.schedule-wizard-inline-fields {
  @apply flex items-center gap-2 ml-2;
}

/* Rows */
.schedule-wizard-row {
  @apply flex items-center justify-between px-4 py-[18px] bg-[#fafafa] rounded-lg min-h-[60px];
  box-sizing: border-box;
}

.schedule-wizard-row-left {
  @apply flex items-center gap-4;
}

.schedule-wizard-row-right {
  @apply flex items-center gap-2;
}

.schedule-wizard-row-label {
  @apply text-base font-medium text-[#000b14] leading-[22px];
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Connectors (Between, and) */
.schedule-wizard-connector {
  @apply text-base font-medium text-[#858a8e] leading-6;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Time fields container */
.schedule-wizard-time-fields {
  @apply flex items-center gap-2 ml-auto;
}

/* Select dropdowns */
.schedule-wizard-select {
  @apply appearance-none text-base font-medium text-[#858a8e] leading-6 py-2.5 pl-3 pr-9 bg-[#fafafa] border border-[#d6d8d9] rounded-xl min-w-[125px] h-11 cursor-pointer transition-colors duration-150;
  font-family: "Plus Jakarta Sans", sans-serif;
  box-sizing: border-box;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23858a8e' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

.schedule-wizard-select:hover {
  @apply border-[#000b14];
}

.schedule-wizard-select:focus {
  @apply outline-none border-[#000b14];
}

.schedule-wizard-select--white {
  @apply bg-white;
}

.schedule-wizard-select--time {
  @apply min-w-[144px];
}

/* Text input */
.schedule-wizard-input {
  @apply text-base font-medium text-[#858a8e] leading-6 py-2.5 px-3 bg-white border border-[#d6d8d9] rounded-xl min-w-[219px] h-11 transition-colors duration-150;
  font-family: "Plus Jakarta Sans", sans-serif;
  box-sizing: border-box;
}

.schedule-wizard-input::placeholder {
  @apply font-medium text-[#858a8e];
}

.schedule-wizard-input:hover {
  @apply border-[#000b14];
}

.schedule-wizard-input:focus {
  @apply outline-none border-[#000b14];
}

/* Number input - keep spinner arrows visible */
.schedule-wizard-number-input {
  @apply text-base font-medium text-[#858a8e] leading-6 py-2.5 px-3 bg-white border border-[#d6d8d9] rounded-xl min-w-[70px] h-11 transition-colors duration-150;
  font-family: "Plus Jakarta Sans", sans-serif;
  box-sizing: border-box;
  text-align: center;
}

.schedule-wizard-number-input:hover {
  @apply border-[#000b14];
}

.schedule-wizard-number-input:focus {
  @apply outline-none border-[#000b14];
}

.schedule-wizard-number-input:disabled {
  @apply opacity-50 cursor-not-allowed;
}

/* Personalize button */
.schedule-wizard-personalize-btn {
  @apply text-base font-semibold text-white bg-[#000b14] border-none rounded-full py-[11px] px-6 h-11 cursor-pointer transition-transform duration-150;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.schedule-wizard-personalize-btn:hover {
  @apply -translate-y-px;
}

/* Toggle switch wrapper */
.schedule-wizard-toggle-wrapper {
  @apply flex items-center cursor-pointer;
}

/* Toggle switch */
.schedule-wizard-toggle {
  @apply w-11 h-[22px] bg-[#d6d8d9] rounded-full relative cursor-pointer transition-colors duration-200;
}

.schedule-wizard-toggle-knob {
  @apply w-4 h-4 bg-white rounded-full absolute top-[3px] left-[3px] transition-all duration-200;
}

/* Toggle ON state (when checkbox is checked or active class) */
input:checked + .schedule-wizard-toggle,
.schedule-wizard-toggle--active {
  @apply bg-[#17ae8b];
}

input:checked + .schedule-wizard-toggle .schedule-wizard-toggle-knob,
.schedule-wizard-toggle--active .schedule-wizard-toggle-knob {
  @apply left-[25px];
}

/* Info text */
.schedule-wizard-info {
  @apply flex items-center gap-2 mt-4 text-[#52595f];
}

.schedule-wizard-info span {
  @apply text-base font-medium text-[#52595f] leading-[22px];
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Footer */
.schedule-wizard-footer {
  @apply flex flex-col items-center gap-4 mt-8;
}

.schedule-wizard-footer-text {
  @apply text-base font-medium text-[#52595f] m-0 leading-6;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.schedule-wizard-footer-badge {
  @apply inline-flex items-center justify-center py-2 px-6 rounded-full;
  background: linear-gradient(90deg, rgba(192, 205, 255, 0.1) 0%, rgba(101, 125, 219, 0.1) 50%, rgba(138, 15, 208, 0.1) 100%);
}

.schedule-wizard-footer-badge span {
  @apply text-sm font-medium text-[#000b14] leading-[21px];
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Activate button */
.schedule-wizard-activate-btn {
  @apply inline-flex items-center justify-center py-4 px-14 bg-[#000b14] text-white text-base font-semibold leading-[22px] border-none rounded-full cursor-pointer relative transition-transform duration-150;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Gradient border effect */
.schedule-wizard-activate-btn::before {
  content: "";
  @apply absolute inset-[-2px] rounded-full p-[2px];
  background: linear-gradient(90deg, #c1ceff 0%, #657ddb 50%, #8a0fd1 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.schedule-wizard-activate-btn:hover {
  @apply -translate-y-px;
}

.schedule-wizard-activate-btn:active {
  @apply translate-y-0;
}

.schedule-wizard-footer-hint {
  @apply text-base font-medium text-[#52595f] m-0 leading-6;
  font-family: "Plus Jakarta Sans", sans-serif;
}
