/* Playground Styles
 * Used by: app/views/playground/*.html.erb
 * Component-specific styles for prototype pages
 */

/* ============================================
   PLAYGROUND FORM CARD
   ============================================ */

.playground-form-card {
  width: 816px;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 20px;
  margin: 32px auto 0;
  overflow: hidden;
}

/* ============================================
   PLAYGROUND ROWS
   ============================================ */

.playground-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  height: 72px;
  box-sizing: border-box;
}

.playground-row-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.playground-row-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.playground-row-label {
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
}

/* Timing row - taller with different layout */
.playground-row--timing {
  height: 92px;
  padding: 24px;
}

/* ============================================
   PLAYGROUND RADIO BUTTONS
   ============================================ */

.playground-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #d6d8d9;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.playground-radio--selected {
  border-color: #000b14;
}

.playground-radio--selected::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #000b14;
  border-radius: 50%;
}

/* ============================================
   PLAYGROUND DROPDOWNS
   ============================================ */

.playground-dropdown {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: #fafafa;
  border: 1px solid #d6d8d9;
  border-radius: 12px;
  cursor: pointer;
  min-width: 275px;
  height: 44px;
  box-sizing: border-box;
}

.playground-dropdown:hover {
  border-color: #000b14;
  background: #fff;
}

/* White background variant for time fields */
.playground-dropdown--white {
  background: #ffffff;
  min-width: 144px;
}

.playground-dropdown-text {
  font-size: 16px;
  font-weight: 600;
  color: #858a8e;
  line-height: 24px;
}

.playground-dropdown-icon {
  width: 20px;
  height: 20px;
  color: #858a8e;
  flex-shrink: 0;
}

/* ============================================
   PLAYGROUND TEXT LINK (Change Contacts)
   ============================================ */

.playground-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;
}

.playground-link:hover {
  opacity: 0.7;
}

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

/* ============================================
   PLAYGROUND COUNT TEXT
   ============================================ */

.playground-count-text {
  font-size: 16px;
  font-weight: 600;
  color: #858a8e;
  line-height: 24px;
}

.playground-chevron-icon {
  width: 20px;
  height: 20px;
  color: #858a8e;
}

/* ============================================
   PLAYGROUND TIMING FIELDS
   ============================================ */

.playground-timing-fields {
  display: flex;
  align-items: center;
  gap: 8px;
}

.playground-timing-connector {
  font-size: 16px;
  font-weight: 600;
  color: #858a8e;
  line-height: 24px;
}

/* ============================================
   PLAYGROUND LAUNCH BUTTON
   ============================================ */

.playground-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 */
.playground-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;
}

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

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

/* ============================================
   DATE RANGE DISPLAY (in radio option row)
   ============================================ */

.date-range-display {
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
  background: #f0f7ff;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

/* ============================================
   DATE RANGE PICKER MODAL
   ============================================ */

.date-range-modal-panel {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 490px;
  overflow: hidden;
}

.date-range-modal-header {
  padding: 32px 32px 24px;
  text-align: center;
}

.date-range-modal-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000b14;
  margin: 0 0 8px;
}

.date-range-modal-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  margin: 0;
}

.date-range-calendar-container {
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

/* Hide the actual input, we're using inline calendar */
.date-range-calendar-input {
  display: none;
}

/* Flatpickr customization - ONLY override colors/fonts, preserve layout */
.date-range-calendar-container .flatpickr-calendar {
  background: #ffffff;
  border: none;
  border-radius: 15px;
  box-shadow: none !important;
  font-family: "Poppins", sans-serif;
}

/* Month/year header text */
.date-range-calendar-container .flatpickr-current-month {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.date-range-calendar-container .flatpickr-current-month .cur-month {
  font-weight: 600;
}

/* Navigation arrows - force correct sizing */
.date-range-calendar-container .flatpickr-months .flatpickr-prev-month,
.date-range-calendar-container .flatpickr-months .flatpickr-next-month {
  position: absolute !important;
  top: 0 !important;
  height: 34px !important;
  padding: 10px !important;
  z-index: 3 !important;
  display: inline-block !important;
}

.date-range-calendar-container .flatpickr-months .flatpickr-prev-month {
  left: 0 !important;
}

.date-range-calendar-container .flatpickr-months .flatpickr-next-month {
  right: 0 !important;
}

.date-range-calendar-container .flatpickr-months .flatpickr-prev-month svg,
.date-range-calendar-container .flatpickr-months .flatpickr-next-month svg {
  width: 14px !important;
  height: 14px !important;
  display: block !important;
  fill: #000000 !important;
}

.date-range-calendar-container .flatpickr-months .flatpickr-prev-month:hover svg,
.date-range-calendar-container .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #000000 !important;
}

/* Weekday headers */
.date-range-calendar-container .flatpickr-weekdaycontainer {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.date-range-calendar-container .flatpickr-weekday {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

/* Day cells */
.date-range-calendar-container .flatpickr-day {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  border-radius: 8px;
}

.date-range-calendar-container .flatpickr-day:hover {
  background: #f0f7ff;
  border-color: transparent;
}

/* Previous/next month days (grayed out) */
.date-range-calendar-container .flatpickr-day.prevMonthDay,
.date-range-calendar-container .flatpickr-day.nextMonthDay {
  color: #d6d8d9;
}

/* Selected range */
.date-range-calendar-container .flatpickr-day.selected,
.date-range-calendar-container .flatpickr-day.startRange,
.date-range-calendar-container .flatpickr-day.endRange {
  background: #000b14;
  border-color: #000b14;
  color: #ffffff;
}

.date-range-calendar-container .flatpickr-day.inRange {
  background: #f0f7ff;
  border-color: transparent;
  box-shadow: -5px 0 0 #f0f7ff, 5px 0 0 #f0f7ff;
}

.date-range-calendar-container .flatpickr-day.selected:hover,
.date-range-calendar-container .flatpickr-day.startRange:hover,
.date-range-calendar-container .flatpickr-day.endRange:hover {
  background: #000b14;
  border-color: #000b14;
}

/* Today indicator */
.date-range-calendar-container .flatpickr-day.today {
  border-color: #000b14;
}

.date-range-calendar-container .flatpickr-day.today:hover {
  background: #f0f7ff;
  border-color: #000b14;
}

/* Modal Footer */
.date-range-modal-footer {
  display: flex;
  gap: 16px;
  padding: 24px 32px 32px;
  justify-content: center;
}

.date-range-btn-cancel {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #52595f;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.date-range-btn-cancel:hover {
  background: #fafafa;
  border-color: #d6d8d9;
}

.date-range-btn-confirm {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #000b14;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

/* Gradient border for confirm button */
.date-range-btn-confirm::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  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;
}

.date-range-btn-confirm:hover {
  transform: translateY(-1px);
}

.date-range-btn-confirm:active {
  transform: translateY(0);
}

/* ============================================
   CAMPAIGN SUCCESS PAGE
   ============================================ */

/* Confetti containers - 500px height matches Figma (ends before text) */
.confetti-container {
  position: absolute;
  top: 0;
  width: 500px;
  height: 500px;
  pointer-events: none;
  overflow: hidden;
}

.confetti-left {
  left: 0;
}

.confetti-right {
  right: 0;
  transform: scaleX(-1);
}

.confetti-svg {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

/* Completed badge */
.success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #fafafa;
  border-radius: 100px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #858a8e;
  letter-spacing: 0.5px;
}

/* Trophy illustration container */
.success-trophy {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Success title */
.success-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000b14;
  line-height: 1.3;
}

/* Success description */
.success-description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #858a8e;
  line-height: 1.8;
}

/* Go to Dashboard button */
.success-dashboard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 56px;
  background: #000b14;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  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 */
.success-dashboard-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;
}

.success-dashboard-btn:hover {
  transform: translateY(-1px);
}

.success-dashboard-btn:active {
  transform: translateY(0);
}

/* ============================================
   CUSTOM EMAIL REMINDER MODAL
   ============================================ */

.email-reminder-modal {
  width: 1252px;
  max-width: 100%;
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.email-reminder-header {
  padding: 32px 32px 24px;
}

.email-reminder-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.email-reminder-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000b14;
  line-height: 32px;
  margin: 0;
}

.email-reminder-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.15s ease;
}

.email-reminder-close:hover {
  opacity: 0.7;
}

.email-reminder-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  line-height: 24px;
  margin: 0;
}

/* ============================================
   MACBOOK AIR M4 MIDNIGHT MOCKUP
   ============================================ */

.macbook-wrapper {
  padding: 0 32px;
  display: flex;
  justify-content: center;
}

.macbook-air-m4 {
  width: 1188px;
  max-width: 100%;
}

/* Screen Part - contains bezel and display */
.macbook-screen-part {
  display: flex;
  justify-content: center;
}

/* Bezel - dark frame around the screen */
.macbook-bezel {
  width: 994px;
  background: linear-gradient(180deg, #2d3339 0%, #1f2428 100%);
  border-radius: 16px 16px 0 0;
  padding: 20px 23px 12px;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Notch with Camera */
.macbook-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 137px;
  height: 21px;
  background: linear-gradient(180deg, #2d3339 0%, #1f2428 100%);
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.macbook-camera {
  width: 12px;
  height: 12px;
  background: #0f1316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.1);
}

.macbook-camera-lens {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 30% 30%, #0f3857 0%, #05111d 60%, #080905 100%);
  border-radius: 50%;
}

/* Display - white screen content area */
.macbook-display {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  min-height: 580px;
}

/* Body Part - Hinge and Base (1188 x 34px total) */
.macbook-body-part {
  width: 1188px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main hinge section (1188 x 29px) */
.macbook-hinge {
  width: 100%;
  height: 29px;
  background: linear-gradient(180deg, #3d444c 0%, #2a3138 40%, #212733 100%);
  position: relative;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

/* Shadow gradients on left and right edges */
.macbook-hinge-shadow {
  position: absolute;
  top: 0;
  width: 134px;
  height: 100%;
  pointer-events: none;
}

.macbook-hinge-shadow-left {
  left: 0;
  background: linear-gradient(90deg, #212733 0%, #21273326 26%, transparent 100%);
}

.macbook-hinge-shadow-right {
  right: 0;
  background: linear-gradient(270deg, #212733 0%, #21273326 26%, transparent 100%);
}

/* Light reflections on far edges */
.macbook-hinge-light {
  position: absolute;
  top: 3px;
  width: 15px;
  height: 23px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.17) 9%,
    rgba(255, 255, 255, 0.65) 27%,
    rgba(255, 255, 255, 0.65) 49%,
    rgba(255, 255, 255, 0.19) 68%,
    rgba(255, 255, 255, 0) 100%
  );
}

.macbook-hinge-light-left {
  left: 3px;
}

.macbook-hinge-light-right {
  right: 3px;
}

/* Center notch - trackpad opening indicator */
.macbook-hinge-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 8px;
  background: linear-gradient(180deg, #4a5562 0%, #3d444c 100%);
  border-radius: 0 0 4px 4px;
}

/* Rubber feet container */
.macbook-feet {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 55px;
  margin-top: 0;
  height: 5px;
}

/* Individual foot (79 x 5px) */
.macbook-foot {
  width: 79px;
  height: 5px;
  position: relative;
}

/* Rubber base (73 x 3px, 30% opacity black) */
.macbook-foot::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3px;
  right: 3px;
  height: 3px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 1px 1px;
}

/* ============================================
   GMAIL EMAIL VIEW STYLES
   ============================================ */

.gmail-email-view {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Gmail Toolbar */
.gmail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #e5e5e5;
  height: 46px;
  box-sizing: border-box;
}

.gmail-toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gmail-toolbar-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gmail-toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gmail-icon {
  width: 21px;
  height: 21px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.gmail-icon:hover {
  opacity: 0.7;
}

.gmail-icon-sm {
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0.6;
}

.gmail-divider-v {
  width: 1px;
  height: 20px;
  background: #e0e0e0;
  margin: 0 4px;
}

.gmail-pagination {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.54);
  margin-right: 8px;
}

/* Subject Row */
.gmail-subject-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
}

.gmail-subject-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.gmail-subject-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
}

.gmail-subject-text {
  font-size: 21px;
  font-weight: 400;
  color: #202124;
  margin: 0;
  letter-spacing: -0.2px;
  outline: none;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 4px 8px;
  margin: -4px -8px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.gmail-subject-text:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.gmail-subject-text:focus {
  border-color: #1a73e8;
  background-color: #fff;
}

.gmail-subject-text[data-placeholder]:empty::before {
  content: attr(data-placeholder);
  color: #9aa0a6;
  pointer-events: none;
}

.gmail-important-icon {
  flex-shrink: 0;
}

.gmail-inbox-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}

.gmail-tag-x {
  font-size: 10px;
  opacity: 0.6;
}

.gmail-subject-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Sender Row */
.gmail-sender-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid #e5e5e5;
}

.gmail-avatar {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gmail-sender-info {
  flex: 1;
  min-width: 0;
}

.gmail-sender-line {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.gmail-sender-name {
  font-size: 14px;
  font-weight: 700;
  color: #202124;
}

.gmail-sender-email {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54);
}

.gmail-unsubscribe {
  font-size: 11px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54);
  margin-left: 4px;
}

.gmail-to-line {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54);
  margin-top: 2px;
}

.gmail-timestamp-area {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.gmail-time {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}

/* Email Body Content */
.gmail-body-content {
  padding: 20px;
}

.email-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.email-brand-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000b14;
  letter-spacing: 1px;
}

.email-message {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000b14;
  line-height: 23px;
}

.email-message-content {
  outline: none;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 8px 12px;
  margin: -8px -12px;
  white-space: pre-wrap;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.email-message-content:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.email-message-content:focus {
  border-color: #1a73e8;
  background-color: #fff;
}

.email-message-content[data-placeholder]:empty::before {
  content: attr(data-placeholder);
  color: #9aa0a6;
  pointer-events: none;
}

.email-message p {
  margin: 0 0 16px;
}

.email-message p:last-child {
  margin-bottom: 0;
}

/* Variable placeholders - purple highlight */
.email-var {
  display: inline-block;
  background: rgba(240, 233, 255, 0.8);
  border: 1px solid rgba(119, 70, 214, 0.3);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000b14;
}

.gmail-divider-h {
  height: 1px;
  background: #e5e5e5;
  margin: 20px 0;
}

/* Reply/Forward Buttons */
.gmail-reply-buttons {
  display: flex;
  gap: 8px;
}

.gmail-reply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.gmail-reply-btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

/* ============================================
   SMART FIELD INLINE BUTTONS
   ============================================ */

/* Inline button that appears on hover */
.smart-field-inline-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #1a73e8;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  color: #fff;
  z-index: 10;
}

.smart-field-inline-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.gmail-subject-wrapper:hover .smart-field-inline-btn,
.gmail-subject-wrapper:focus-within .smart-field-inline-btn,
.email-message:hover .smart-field-inline-btn,
.email-message:focus-within .smart-field-inline-btn {
  opacity: 1;
}

/* Position for subject (single line) */
.gmail-smart-btn {
  right: 4px;
}

/* Position for body (top right) */
.email-body-smart-btn {
  top: 8px;
  transform: none;
}

.email-body-smart-btn:hover {
  transform: scale(1.1);
}

/* ============================================
   HINT TEXT
   ============================================ */

.email-reminder-hint {
  text-align: center;
  padding: 16px 32px 0;
  font-size: 14px;
  color: #6b7280;
}

/* ============================================
   FORM STYLES
   ============================================ */

.email-reminder-form {
  display: contents;
}

/* ============================================
   FOOTER BUTTONS
   ============================================ */

.email-reminder-footer {
  display: flex;
  gap: 12px;
  padding: 24px 32px 32px;
}

.email-reminder-btn-cancel {
  flex: 1;
  padding: 16px 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #52595f;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.email-reminder-btn-cancel:hover {
  background: #fafafa;
  border-color: #d6d8d9;
}

.email-reminder-btn-save {
  flex: 1;
  padding: 16px 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #000b14;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

/* Gradient border for save button */
.email-reminder-btn-save::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;
}

.email-reminder-btn-save:hover {
  transform: translateY(-1px);
}

.email-reminder-btn-save:active {
  transform: translateY(0);
}

/* ============================================
   CUSTOM SMS REMINDER MODAL
   ============================================ */

.sms-reminder-modal {
  width: 488px;
  max-width: 100%;
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.sms-reminder-header {
  padding: 32px 32px 24px;
}

.sms-reminder-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sms-reminder-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000b14;
  line-height: 32px;
  margin: 0;
}

.sms-reminder-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.15s ease;
}

.sms-reminder-close:hover {
  opacity: 0.7;
}

.sms-reminder-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  line-height: 24px;
  margin: 0;
}

.sms-reminder-form {
  display: contents;
}

/* ============================================
   IPHONE 16 PRO MOCKUP
   ============================================ */

.iphone-wrapper {
  position: relative;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.iphone-16-pro {
  width: 380px;
  position: relative;
  display: flex;
  justify-content: center;
}

/* Outer titanium frame */
.iphone-frame {
  width: 370px;
  height: 780px;
  background: linear-gradient(135deg, #3a3a3c 0%, #2d2d2d 50%, #1c1c1e 100%);
  border-radius: 55px;
  position: relative;
  padding: 3px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Side buttons - Left */
.iphone-side-buttons-left {
  position: absolute;
  left: -3px;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.iphone-silent-switch {
  width: 3px;
  height: 28px;
  background: linear-gradient(90deg, #2d2d2d 0%, #3a3a3c 50%, #2d2d2d 100%);
  border-radius: 2px 0 0 2px;
}

.iphone-volume-up,
.iphone-volume-down {
  width: 3px;
  height: 52px;
  background: linear-gradient(90deg, #2d2d2d 0%, #3a3a3c 50%, #2d2d2d 100%);
  border-radius: 2px 0 0 2px;
}

/* Side buttons - Right */
.iphone-side-buttons-right {
  position: absolute;
  right: -3px;
  top: 180px;
}

.iphone-power-button {
  width: 3px;
  height: 80px;
  background: linear-gradient(90deg, #2d2d2d 0%, #3a3a3c 50%, #2d2d2d 100%);
  border-radius: 0 2px 2px 0;
}

/* Inner bezel - black border around screen */
.iphone-bezel {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 52px;
  position: relative;
  overflow: hidden;
}

/* iPhone screen container */
.iphone-screen {
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 49px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ============================================
   IPHONE STATUS BAR
   ============================================ */

.iphone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 0;
  height: 50px;
  flex-shrink: 0;
}

.iphone-time {
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  width: 54px;
}

.iphone-dynamic-island {
  width: 110px;
  height: 32px;
  background: #000;
  border-radius: 20px;
}

.iphone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 70px;
  justify-content: flex-end;
}

.iphone-signal,
.iphone-wifi {
  flex-shrink: 0;
}

.iphone-battery {
  display: flex;
  align-items: center;
  gap: 1px;
}

.iphone-battery-body {
  width: 22px;
  height: 11px;
  border: 1px solid #000;
  border-radius: 3px;
  padding: 1px;
}

.iphone-battery-level {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 1px;
}

.iphone-battery-cap {
  width: 2px;
  height: 5px;
  background: #000;
  border-radius: 0 1px 1px 0;
  opacity: 0.4;
}

/* ============================================
   IMESSAGE NAVIGATION BAR
   ============================================ */

.imessage-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px 12px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.imessage-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.imessage-avatar {
  width: 44px;
  height: 44px;
  background: #efefef;
  border: 1px solid #eceff0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imessage-contact-info {
  display: flex;
  align-items: center;
  gap: 2px;
}

.imessage-phone {
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

.imessage-chevron {
  opacity: 0.6;
}

/* ============================================
   IMESSAGE MESSAGES CONTAINER
   ============================================ */

.imessage-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Section with divider */
.imessage-section {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.imessage-section-divider {
  display: flex;
  align-items: center;
  gap: 8px;
}

.imessage-section-line {
  flex: 1;
  height: 1px;
  background: #e3e3e3;
}

.imessage-section-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #9d9d9d;
  letter-spacing: 0.02em;
}

/* Message Bubbles */
.imessage-bubble {
  position: relative;
  max-width: 85%;
}

.imessage-bubble-received {
  align-self: flex-start;
}

.imessage-bubble-sent {
  align-self: flex-end;
}

.imessage-bubble-content {
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  padding: 10px 14px;
  border-radius: 18px;
}

.imessage-bubble-received .imessage-bubble-content {
  background: #e6e5eb;
  color: #000;
}

.imessage-bubble-sent .imessage-bubble-content {
  background: #007aff;
  color: #fff;
}

/* Bubble tails */
.imessage-bubble-tail {
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 17px;
}

.imessage-tail-left {
  left: -6px;
  background: radial-gradient(circle at 100% 0%, transparent 17px, #e6e5eb 17px);
}

.imessage-tail-right {
  right: -6px;
  background: radial-gradient(circle at 0% 0%, transparent 17px, #007aff 17px);
}

/* Editable bubble styling - overrides received bubble styles */
.imessage-bubble-editable {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
}

.imessage-bubble.imessage-bubble-editable .imessage-bubble-content {
  background: #fafafa;
  outline: none !important;
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.imessage-bubble.imessage-bubble-editable .imessage-bubble-content:focus,
.imessage-bubble.imessage-bubble-editable .imessage-bubble-content:focus-visible,
.imessage-bubble.imessage-bubble-editable .imessage-bubble-content:active {
  outline: none !important;
  border: 0 !important;
  border-width: 0 !important;
  box-shadow: none !important;
}

/* Override smart-field-editor-content padding for SMS bubble */
.imessage-bubble-content.smart-field-editor-content {
  padding: 10px 14px;
  border: 0 !important;
}

.imessage-bubble.imessage-bubble-editable .imessage-bubble-content[data-placeholder]:empty::before {
  content: attr(data-placeholder);
  color: #9aa0a6;
  pointer-events: none;
}

.imessage-bubble.imessage-bubble-editable .imessage-bubble-tail {
  background: radial-gradient(circle at 100% 0%, transparent 17px, #fafafa 17px);
}

.imessage-bubble.imessage-bubble-editable .imessage-bubble-content:focus + .imessage-bubble-tail {
  background: radial-gradient(circle at 100% 0%, transparent 17px, #fff 17px);
}

/* SMS Variable placeholders - purple highlight (matching email) */
.sms-var {
  display: inline-block;
  background: rgba(240, 233, 255, 0.8);
  border: 1px solid rgba(119, 70, 214, 0.3);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000b14;
}

/* Smart field button for SMS */
.sms-smart-btn {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #007aff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
  color: #fff;
  z-index: 10;
}

.sms-smart-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ============================================
   IMESSAGE INPUT BAR
   ============================================ */

.imessage-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  flex-shrink: 0;
}

.imessage-plus-btn {
  width: 30px;
  height: 30px;
  background: rgba(120, 120, 128, 0.16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.imessage-input {
  flex: 1;
  height: 32px;
  border: 1px solid #c6c6c8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.imessage-placeholder {
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(60, 60, 67, 0.3);
}

.imessage-mic {
  flex-shrink: 0;
}

/* ============================================
   IPHONE HOME INDICATOR
   ============================================ */

.iphone-home-indicator {
  display: flex;
  justify-content: center;
  padding: 0px;
  flex-shrink: 0;
}

.iphone-home-bar {
  width: 128px;
  height: 5px;
  background: #000;
  border-radius: 3px;
}

/* ============================================
   EMOJI REACTION BAR
   ============================================ */

.sms-emoji-bar {
  position: absolute;
  top: 75%;
  left: 35%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 100;
  white-space: nowrap;
  min-width: 320px;
}

.sms-emoji-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #1a1a1a;
}

.sms-emoji-icon svg {
  width: 24px;
  height: 24px;
}

.sms-emoji-divider {
  width: 1px;
  height: 24px;
  background: #e5e5e5;
}

.sms-emoji-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sms-emoji {
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.sms-emoji:hover {
  transform: scale(1.2);
}

.sms-emoji-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.15s ease;
}

.sms-emoji-add:hover {
  color: #6b7280;
}

.sms-emoji-add svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SMS REMINDER FOOTER BUTTONS
   ============================================ */

.sms-reminder-footer {
  display: flex;
  gap: 12px;
  padding: 24px 32px 32px;
}

.sms-reminder-btn-cancel {
  flex: 1;
  padding: 16px 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #52595f;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.sms-reminder-btn-cancel:hover {
  background: #fafafa;
  border-color: #d6d8d9;
}

.sms-reminder-btn-save {
  flex: 1;
  padding: 16px 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #000b14;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

/* Gradient border for save button */
.sms-reminder-btn-save::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;
}

.sms-reminder-btn-save:hover {
  transform: translateY(-1px);
}

.sms-reminder-btn-save:active {
  transform: translateY(0);
}

/* ============================================
   TARGET AUDIENCE PAGE
   ============================================ */

.target-audience-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px 24px;
  gap: 32px;
}

/* Step Badge */
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #fafafa;
  border: 1px solid #eceff0;
  border-radius: 100px;
}

.step-badge span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
  letter-spacing: 0;
}

/* Header */
.target-audience-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.target-audience-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000b14;
  margin: 0;
  line-height: 1.35;
}

.target-audience-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #858a8e;
  margin: 0;
  line-height: 1.8;
}

/* Option Cards */
.target-audience-options {
  display: flex;
  gap: 8px;
}

.audience-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 340px;
  height: 164px;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.audience-option-card:hover {
  border-color: #d6d8d9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.audience-option-card.selected {
  border-color: #7746d6;
  border-width: 2px;
}

/* Icon Wrapper */
.audience-option-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #fafafa;
  border-radius: 100px;
}

.audience-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(240, 233, 255, 0.5);
  border-radius: 100px;
  color: #7746d6;
}

/* Option Text */
.audience-option-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000b14;
  line-height: 1.5;
  text-align: center;
}

/* Footer Buttons */
.target-audience-footer {
  display: flex;
  gap: 16px;
}

.target-audience-btn-back {
  padding: 10px 56px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
  background: #ffffff;
  border: 1px solid #d6d8d9;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.target-audience-btn-back:hover {
  background: #fafafa;
  border-color: #c0c4c8;
}

.target-audience-btn-next {
  padding: 10px 56px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #000b14;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

/* Gradient border for next button */
.target-audience-btn-next::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;
}

.target-audience-btn-next:hover {
  transform: translateY(-1px);
}

.target-audience-btn-next:active {
  transform: translateY(0);
}

/* ============================================
   SELECT AUDIENCE PAGE (Step 7)
   ============================================ */

/* Container */
.select-audience-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 40px 24px;
  background: #fafafa;
}

/* Step Badge - matching schedule_launch style */
.select-audience-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #fafafa;
  border-radius: 100px;
  margin-bottom: 32px;
}

.select-audience-badge span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #858a8e;
  letter-spacing: 0;
}

/* Header */
.select-audience-header {
  text-align: center;
  margin-bottom: 32px;
}

.select-audience-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000b14;
  line-height: 1.35;
  margin: 0 0 8px;
}

.select-audience-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #858a8e;
  line-height: 1.8;
  margin: 0;
}

/* Form Card */
.select-audience-card {
  width: 768px;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 20px;
  overflow: visible;
}

/* Main radio row (All customers, Some customers, Upload) */
.select-audience-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  height: 72px;
  box-sizing: border-box;
  cursor: pointer;
}

.select-audience-row:hover {
  background: rgba(0, 0, 0, 0.01);
}

.select-audience-row-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hide actual radio input */
.select-audience-radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom radio circle */
.select-audience-radio-circle {
  width: 20px;
  height: 20px;
  border: 2px solid #d6d8d9;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s ease;
}

.select-audience-radio-circle--small {
  width: 20px;
  height: 20px;
}

/* Selected state for radio circle */
.select-audience-radio-input:checked + .select-audience-radio-circle {
  border-color: #000b14;
}

.select-audience-radio-input:checked + .select-audience-radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #000b14;
  border-radius: 50%;
}

/* Selected row state */
.select-audience-row.selected {
  background: rgba(0, 0, 0, 0.02);
}

.select-audience-filter-row.selected {
  background: #f0f0f0;
}

/* Main option label */
.select-audience-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000b14;
  line-height: 24px;
}

/* Divider */
.select-audience-divider {
  height: 1px;
  background: #eceff0;
  margin: 0;
}

/* Nested filters container */
.select-audience-nested {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 24px 16px;
}

.select-audience-nested.hidden {
  display: none;
}

/* Nested filter row */
.select-audience-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  background: #fafafa;
  border-radius: 8px;
  cursor: pointer;
  height: 60px;
  box-sizing: border-box;
}

.select-audience-filter-row:hover {
  background: #f5f5f5;
}

.select-audience-filter-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.select-audience-filter-right {
  display: flex;
  align-items: center;
}

/* Filter label */
.select-audience-filter-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000b14;
  line-height: 22px;
}

/* Date field (white bg) */
.select-audience-date-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #d6d8d9;
  border-radius: 12px;
  min-width: 275px;
  height: 44px;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.select-audience-date-field:hover {
  border-color: #000b14;
}

.select-audience-date-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  line-height: 24px;
}

.select-audience-calendar-icon {
  color: #858a8e;
  flex-shrink: 0;
}

/* Select field (grey bg) */
.select-audience-select-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #fafafa;
  border: 1px solid #d6d8d9;
  border-radius: 12px;
  min-width: 275px;
  height: 44px;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.select-audience-select-field:hover {
  border-color: #000b14;
  background: #ffffff;
}

.select-audience-select-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  line-height: 24px;
}

.select-audience-chevron-icon {
  color: #858a8e;
  flex-shrink: 0;
}

/* Native select element styled */
.select-audience-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  line-height: 24px;
  padding: 10px 36px 10px 12px;
  background: #ffffff;
  border: 1px solid #d6d8d9;
  border-radius: 12px;
  min-width: 275px;
  height: 44px;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.15s ease;
  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;
}

.select-audience-select:hover {
  border-color: #000b14;
}

.select-audience-select:focus {
  outline: none;
  border-color: #000b14;
}

.select-audience-select option {
  color: #000b14;
}

.select-audience-select option:first-child {
  color: #858a8e;
}

/* Row with nested filters - add gap before nested content */
.select-audience-row--with-nested {
  margin-bottom: 8px;
}

/* Disabled state for filter fields */
.select-audience-filter-right.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.select-audience-date-field.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.select-audience-date-field.disabled:hover {
  border-color: #d6d8d9;
}

.select-audience-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
}

.select-audience-select:disabled:hover {
  border-color: #d6d8d9;
}

/* Date text with value */
.select-audience-date-text.has-value {
  color: #000b14;
}

/* Form wrapper */
.select-audience-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Launch Campaign Button */
.select-audience-launch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 16px 56px;
  background: #000b14;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  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 */
.select-audience-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;
}

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

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

/* ============================================
   INLINE DATE RANGE PICKER DROPDOWN
   ============================================ */

.inline-date-range-dropdown {
  position: fixed;
  z-index: 9999;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 16px;
  min-width: 320px;
}

.inline-date-range-dropdown.hidden {
  display: none;
}

.inline-date-range-calendar {
  margin-bottom: 16px;
}

.inline-date-range-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.inline-date-range-cancel {
  padding: 10px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  background: transparent;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.inline-date-range-cancel:hover {
  background: #f9fafb;
}

.inline-date-range-confirm {
  padding: 10px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #000b14;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.inline-date-range-confirm:hover {
  background: #1f2937;
}

/* Flatpickr overrides for inline date range */
.inline-date-range-dropdown .flatpickr-calendar {
  box-shadow: none !important;
  border: none !important;
  width: 100% !important;
}

.inline-date-range-dropdown .flatpickr-months {
  padding: 0 8px;
}

.inline-date-range-dropdown .flatpickr-current-month {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.inline-date-range-dropdown .flatpickr-day {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  border-radius: 8px;
}

.inline-date-range-dropdown .flatpickr-day.selected,
.inline-date-range-dropdown .flatpickr-day.startRange,
.inline-date-range-dropdown .flatpickr-day.endRange {
  background: #000b14 !important;
  border-color: #000b14 !important;
}

.inline-date-range-dropdown .flatpickr-day.inRange {
  background: #e5e7eb !important;
  border-color: #e5e7eb !important;
  box-shadow: none !important;
}

/* Update date field text when value is selected */
.select-audience-date-text.has-value {
  color: #000b14;
  font-weight: 500;
}

/* ============================================
   CONFIRM BUSINESS PAGE
   ============================================ */

/* Content area styling */
.confirm-business-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 32px 64px;
  gap: 24px;
}

/* Logo section */
.confirm-business-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.confirm-business-logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-business-logo-circle {
  width: 82px;
  height: 82px;
  border: 1px solid #eceff0;
  border-radius: 100px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-business-logo-edit {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease;
  color: #858a8e;
}

.confirm-business-logo-edit:hover {
  border-color: #d6d8d9;
}

.confirm-business-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000b14;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s ease;
}

.confirm-business-logo-link:hover {
  opacity: 0.7;
}

/* Business name badge */
.confirm-business-name-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 100px;
}

.confirm-business-name-badge span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000b14;
}

/* Header */
.confirm-business-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.confirm-business-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000b14;
  margin: 0;
  line-height: 1.35;
}

.confirm-business-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #858a8e;
  margin: 0;
  line-height: 1.5;
  max-width: 500px;
}

/* Confirm button */
.confirm-business-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 16px 56px;
  background: #000b14;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  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 */
.confirm-business-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;
}

.confirm-business-btn:hover {
  transform: translateY(-1px);
}

.confirm-business-btn:active {
  transform: translateY(0);
}

/* Alternative link */
.confirm-business-alt-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #858a8e;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.confirm-business-alt-link:hover {
  color: #6b7280;
}

/* ============================================
   AUTOMATION RULES PAGE
   ============================================ */

/* Header */
.automation-rules-header {
  text-align: center;
  margin-bottom: 32px;
}

.automation-rules-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000b14;
  margin: 0 0 8px;
  line-height: 1.35;
}

.automation-rules-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #858a8e;
  margin: 0;
  line-height: 1.8;
}

/* Main card */
.automation-rules-card {
  width: 856px;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 20px;
  overflow: hidden;
}

/* Sections */
.automation-rules-section {
  padding: 24px;
}

.automation-rules-section--border-top {
  border-top: 1px solid #eceff0;
}

/* Section header */
.automation-rules-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.automation-rules-section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000b14;
  line-height: 24px;
}

/* Toggle header */
.automation-rules-toggle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* Radio circles */
.automation-rules-radio-circle {
  width: 20px;
  height: 20px;
  border: 2px solid #d6d8d9;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.automation-rules-radio-circle--small {
  width: 20px;
  height: 20px;
}

/* Nested options */
.automation-rules-nested {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Radio option (clickable label) */
.automation-rules-radio-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 16px;
  background: #fafafa;
  border-radius: 8px;
  min-height: 60px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

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

/* Selected state - uses schedule-radio-option--selected from radio-select controller */
.automation-rules-radio-option.schedule-radio-option--selected {
  background: #f0f0f0;
}

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

.automation-rules-radio-option.schedule-radio-option--selected .automation-rules-radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #000b14;
  border-radius: 50%;
}

/* Inline fields for "Send X days after" */
.automation-rules-inline-fields {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

/* Rows */
.automation-rules-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  background: #fafafa;
  border-radius: 8px;
  min-height: 60px;
  box-sizing: border-box;
}

.automation-rules-row--selected {
  background: #f0f0f0;
}

.automation-rules-row-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.automation-rules-row-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.automation-rules-row-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000b14;
  line-height: 22px;
}

/* Connectors (Between, and) */
.automation-rules-connector {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  line-height: 24px;
}

/* Time fields container */
.automation-rules-time-fields {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Select dropdowns */
.automation-rules-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  line-height: 24px;
  padding: 10px 36px 10px 12px;
  background: #fafafa;
  border: 1px solid #d6d8d9;
  border-radius: 12px;
  min-width: 125px;
  height: 44px;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.15s ease;
  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;
}

.automation-rules-select:hover {
  border-color: #000b14;
}

.automation-rules-select:focus {
  outline: none;
  border-color: #000b14;
}

.automation-rules-select--white {
  background-color: #ffffff;
}

.automation-rules-select--time {
  min-width: 144px;
}

/* Text input */
.automation-rules-input {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  line-height: 24px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #d6d8d9;
  border-radius: 12px;
  min-width: 219px;
  height: 44px;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}

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

.automation-rules-input:hover {
  border-color: #000b14;
}

.automation-rules-input:focus {
  outline: none;
  border-color: #000b14;
}

/* Personalize button */
.automation-rules-personalize-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #000b14;
  border: none;
  border-radius: 100px;
  padding: 11px 24px;
  height: 44px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.automation-rules-personalize-btn:hover {
  transform: translateY(-1px);
}

/* Toggle switch wrapper */
.automation-rules-toggle-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Toggle switch */
.automation-rules-toggle {
  width: 44px;
  height: 22px;
  background: #d6d8d9;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.automation-rules-toggle-knob {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.2s ease;
}

/* Toggle ON state (when checkbox is checked) */
input:checked + .automation-rules-toggle {
  background: #17ae8b;
}

input:checked + .automation-rules-toggle .automation-rules-toggle-knob {
  left: 25px;
}

/* Info text */
.automation-rules-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #52595f;
}

.automation-rules-info span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #52595f;
  line-height: 22px;
}

/* Footer */
.automation-rules-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.automation-rules-footer-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #52595f;
  margin: 0;
  line-height: 24px;
}

.automation-rules-footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  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%);
  border-radius: 100px;
}

.automation-rules-footer-badge span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000b14;
  line-height: 21px;
}

/* Activate button */
.automation-rules-activate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 56px;
  background: #000b14;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  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 */
.automation-rules-activate-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;
}

.automation-rules-activate-btn:hover {
  transform: translateY(-1px);
}

.automation-rules-activate-btn:active {
  transform: translateY(0);
}

.automation-rules-footer-hint {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #52595f;
  margin: 0;
  line-height: 24px;
}

/* ============================================
   REWARD RECIPIENT PAGE (Who gets the reward?)
   ============================================ */

/* Two-panel row below the wizard-card-header */
.reward-recipient-panels {
  display: flex;
}

/* Left panel */
.reward-recipient-left {
  flex: 1;
}

/* Right panel - fafafa sidebar */
.reward-recipient-right {
  flex: 0 0 420px;
  background: #fafafa;
  border-left: 1px solid #eceff0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.reward-recipient-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 56px 48px;
}

/* Form - flex column centered for button alignment */
.reward-recipient-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Step badge */
.reward-recipient-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-radius: 100px;
  padding: 10px 24px;
  margin-bottom: 32px;
}

.reward-recipient-step-badge span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #858a8e;
  letter-spacing: 0;
  line-height: 16px;
}

/* Header */
.reward-recipient-header {
  text-align: center;
  margin-bottom: 32px;
}

.reward-recipient-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000b14;
  margin: 0 0 8px;
  line-height: 1.35;
}

.reward-recipient-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  margin: 0;
  line-height: 1.8;
}

/* Option cards container */
.reward-recipient-options {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 688px;
}

/* Individual option card */
.reward-recipient-option-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 20px;
  padding: 24px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  min-height: 188px;
  box-sizing: border-box;
}

.reward-recipient-option-card:hover {
  border-color: #d6d8d9;
}

.reward-recipient-option-card.selected {
  border-color: #000b14;
  box-shadow: 0 0 0 1px #000b14;
}

/* Icon wrapper */
.reward-recipient-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #fafafa;
  border-radius: 100px;
  margin-bottom: 16px;
}

.reward-recipient-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(240, 233, 255, 0.5);
  border-radius: 100px;
}

/* Option text */
.reward-recipient-option-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.reward-recipient-option-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000b14;
  line-height: 22px;
}

.reward-recipient-option-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #858a8e;
  line-height: 19px;
}

/* Recommended badge */
.reward-recipient-recommended-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(17, 167, 119, 0.1);
  color: #11a777;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  padding: 4px 8px;
  border-radius: 12px;
}

/* Next button */
.reward-recipient-next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 149px;
  height: 54px;
  padding: 16px 56px;
  background: #000b14;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  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 */
.reward-recipient-next-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;
}

.reward-recipient-next-btn:hover {
  transform: translateY(-1px);
}

.reward-recipient-next-btn:active {
  transform: translateY(0);
}

/* Tips card inside right panel */
/* Tips card inside right panel */
.reward-recipient-tips-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 20px;
  padding: 32px;
}

.reward-recipient-tips-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 24px;
}

.reward-recipient-tips-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000b14;
  margin: 0 0 24px;
  line-height: 22px;
}

.reward-recipient-tips-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reward-recipient-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.reward-recipient-tips-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.reward-recipient-tips-list li span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #858a8e;
  line-height: 25px;
}

.reward-recipient-tips-list li strong {
  font-weight: 600;
  color: #000b14;
}

/* ============================================
   CUSTOMER REWARD PAGE (Reward for your customer)
   ============================================ */

/* Form fields row - incentive type + amount side by side */
.customer-reward-fields {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 24px;
}

.customer-reward-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.customer-reward-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000b14;
  line-height: 21px;
}

.customer-reward-select,
.customer-reward-input {
  width: 100%;
  height: 53px;
  padding: 0 16px;
  border: 1px solid #eceff0;
  border-radius: 12px;
  background: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #52595f;
  line-height: 19px;
  outline: none;
  transition: border-color 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.customer-reward-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2352595f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.customer-reward-select:focus,
.customer-reward-input:focus {
  border-color: #000b14;
}

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

/* Info banner */
.customer-reward-info-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 520px;
  padding: 8px 12px;
  background: #fffaee;
  border-radius: 12px;
  margin-bottom: 32px;
}

.customer-reward-info-banner svg {
  flex-shrink: 0;
}

.customer-reward-info-banner span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #52595f;
  line-height: 18px;
}

.customer-reward-info-banner strong {
  font-weight: 600;
  color: #000b14;
}

/* ============================================
   BOTH REWARDS PAGE (Set rewards for both)
   ============================================ */

/* Single content wrapper — replaces wizard-card-content + reward-recipient-content */
.both-rewards-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 80px 48px;
}

.both-rewards-content .reward-recipient-step-badge,
.both-rewards-content .reward-recipient-header {
  text-align: center;
}

.both-rewards-content .reward-recipient-form {
  width: 100%;
  max-width: 680px;
}

/* Reward section wrapper */
.both-rewards-section {
  width: 100%;
}

/* Section header with icon + title */
.both-rewards-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.both-rewards-section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100px;
}

.both-rewards-section-icon--customer {
  background: rgba(240, 233, 255, 0.5);
}

.both-rewards-section-icon--friend {
  background: rgba(17, 167, 119, 0.1);
}

.both-rewards-section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000b14;
  line-height: 22px;
}

/* Divider between the two sections */
.both-rewards-divider {
  width: 100%;
  height: 1px;
  background: #eceff0;
  margin: 24px 0;
}

/* Widen fields and banners inside both-rewards sections */
.both-rewards-section .customer-reward-fields,
.both-rewards-section .customer-reward-info-banner {
  max-width: 100%;
}
