/* ============================================================
   RESTAURANT BOOKING TOOL — EXACT DESIGN MATCH
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-primary: #4A3728;
  --c-primary-hover: #3A2A1E;
  --c-bg: #F8F6F3;
  --c-card: #FFFFFF;
  --c-border: #E5E0DB;
  --c-text: #2D2D2D;
  --c-text-secondary: #6B7280;
  --c-text-muted: #9CA3AF;
  --c-success: #059669;
  --c-success-light: #D1FAE5;
  --c-info-bg: #F0F4F8;
  --c-warning-bg: #FEF3C7;
  --c-warning-border: #F59E0B;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ============ PAGE WRAPPER ============ */

.booking-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

/* ============ STEPPER ============ */

.stepper-wrapper {
  width: 100%;
  max-width: 700px;
  margin-bottom: 2rem;
  min-width: 0; /* allow shrinking inside flex */
}

.stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

/* Fixed width so every point sits in the same-sized cell = even spacing */
.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 56px;
  min-width: 56px;
}

.stepper-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  background: var(--c-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  position: relative;
  z-index: 2;
}

.stepper-step.active .stepper-circle,
.stepper-step.completed .stepper-circle {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

.stepper-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--c-text-muted);
  text-align: center;
  white-space: nowrap;
}

.stepper-step.active .stepper-label,
.stepper-step.completed .stepper-label {
  color: var(--c-primary);
}

/* Fixed width so every line segment has the same length; gap handles point-to-line distance */
.stepper-line {
  flex: 0 0 72px;
  width: 72px;
  height: 2px;
  background: var(--c-border);
  margin: 0;
  margin-top: 17px;
  position: relative;
  z-index: 1;
}

.stepper-line.completed {
  background: var(--c-primary);
}

/* ============ MAIN CONTENT ============ */

.main-content {
  width: 100%;
  max-width: 560px;
}

.card {
  background: var(--c-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

/* ============ TYPOGRAPHY ============ */

.page-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 1.5rem;
}

.page-title-center {
  text-align: center;
}

.page-subtitle {
  color: var(--c-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.page-subtitle-center {
  text-align: center;
}

.section-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* ============ FORMS ============ */

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

.form-label .required {
  color: #DC2626;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--c-text);
  background: var(--c-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(74, 55, 40, 0.1);
}

.form-input::placeholder {
  color: var(--c-text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text-muted);
  pointer-events: none;
}

.input-with-icon .form-input {
  padding-left: 2.75rem;
}

/* ============ INFO BOX ============ */

.info-box {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--c-info-bg);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.info-box-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--c-text-secondary);
}

.info-box-text {
  font-size: 0.875rem;
  color: var(--c-text-secondary);
  line-height: 1.5;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--c-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--c-primary-hover);
}

.btn-primary:disabled,
.btn-primary[disabled] {
  background: #C8BDB0;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.65;
  pointer-events: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text);
}

.btn-outline:hover {
  background: var(--c-bg);
}

.btn-block {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-group-between {
  justify-content: space-between;
}

.btn-group-center {
  justify-content: center;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  color: var(--c-text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
}

.btn-back:hover {
  color: var(--c-primary);
}

/* ============ TOGGLE GROUP ============ */

.toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.toggle-btn {
  padding: 0.75rem 1rem;
  background: var(--c-card);
  border: none;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.toggle-btn:first-child {
  border-right: 1px solid var(--c-border);
}

.toggle-btn.active {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.toggle-btn:disabled,
.toggle-btn.toggle-btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.toggle-btn:disabled.active,
.toggle-btn.toggle-btn-disabled.active {
  background: var(--c-border);
  color: var(--c-text-muted);
}

.age-hint-info {
  background: var(--c-bg) !important;
  color: var(--c-text-secondary) !important;
  border: 1px solid var(--c-border);
}

/* ============ SERVICE AREA SCREENS ============ */

.service-screen {
  text-align: center;
  padding: 1rem 0;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--c-text-secondary);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-subtitle {
  color: var(--c-text-secondary);
  font-size: 0.9375rem;
  max-width: 400px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.service-card {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-success);
  margin-bottom: 0.75rem;
}

.service-badge svg {
  width: 14px;
  height: 14px;
}

.service-card-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-card-text {
  color: var(--c-text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Satellite Parking Card */
.satellite-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  max-width: 350px;
  margin: 0 auto 1.5rem;
}

.satellite-icon {
  margin-bottom: 0.5rem;
  color: var(--c-text-secondary);
}

.satellite-name {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.satellite-address {
  font-size: 0.875rem;
  color: var(--c-text-secondary);
  line-height: 1.4;
}

.service-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ============ CALENDAR ============ */

.calendar {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.calendar-nav {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--c-text);
  padding: 0.25rem;
}

.calendar-title {
  font-weight: 700;
  font-size: 1rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-dow {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--c-text-secondary);
  padding: 0.5rem 0;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}

/* Booking counters are not shown to guests */
.bk-day-counter { display: none; }
.calendar-day.fully-booked {
  background: #F3F4F6;
  color: #9CA3AF;
  cursor: not-allowed;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: var(--c-bg);
}

.calendar-day.selected {
  background: var(--c-primary);
  color: #fff;
  font-weight: 600;
}

.calendar-day.disabled {
  color: var(--c-text-muted);
  cursor: not-allowed;
}

.calendar-day.closed-by-admin {
  background: #FEF2F2;
  color: #FCA5A5;
}

.calendar-day.closed-by-admin::after {
  content: '✕';
  font-size: 0.45rem;
  position: absolute;
  top: 3px;
  right: 3px;
  color: #FCA5A5;
}

/* ── Special-event days (set by admin) ── */
.calendar-day.special-event {
  background: #FEF3C7;
  color: #92400E;
}

.calendar-day.special-event:hover:not(.disabled) {
  background: #FDE68A;
}

.day-event-info {
  position: absolute;
  top: 2px;
  right: 3px;
  font-size: 0.6rem;
  color: #B45309;
  line-height: 1;
  pointer-events: none;
  font-style: normal;
}

/* ── Tooltip (data-tooltip attribute) ── */
.calendar-day[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* small arrow below tooltip bubble */
.calendar-day[data-tooltip]::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(17, 24, 39, 0.92);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.15s;
}

.calendar-day[data-tooltip]:hover::before,
.calendar-day[data-tooltip]:hover::after {
  opacity: 1;
}

.calendar-day[data-tooltip]:hover {
  z-index: 10;
}

.calendar-day.empty {
  cursor: default;
}

/* Selected Dates */
.selected-dates {
  margin-bottom: 1.5rem;
}

.dates-min-hint {
  text-align: center;
  font-size: 0.8125rem;
  color: #92400E;
  margin-top: 0.5rem;
  min-height: 1.2em;
}

.selected-dates-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.selected-dates-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.date-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--c-primary);
  color: #fff;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.date-chip-remove {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  opacity: 0.8;
  padding: 0;
}

.date-chip-remove:hover {
  opacity: 1;
}

.select-more-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1.5px dashed var(--c-border);
  border-radius: 20px;
  font-size: 0.8125rem;
  color: var(--c-primary);
}

/* ============ GUEST CARDS ============ */

.guest-card {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.guest-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.guest-card-title {
  font-weight: 700;
  font-size: 1rem;
}

.guest-card-subtitle {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  margin-top: 0.125rem;
}

.guest-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text-muted);
  padding: 0.25rem;
}

.guest-remove-btn:hover {
  color: #DC2626;
}

.add-guest-btn {
  width: 100%;
  padding: 1rem;
  border: 1.5px dashed var(--c-border);
  border-radius: var(--radius-lg);
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.add-guest-btn:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

/* ============ PAYMENT ============ */

.payment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0.75rem 0;
}

.booking-summary-card {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.deposit-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--c-warning-bg);
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

.booking-summary-title {
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.booking-summary-guests {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #0D9488;
}

.booking-summary-guests svg {
  color: #0D9488;
}

.payment-card {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1rem;
}

.payment-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.card-brands {
  display: flex;
  gap: 0.5rem;
}

.card-brand {
  padding: 0.25rem 0.5rem;
  background: var(--c-text);
  color: #fff;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
}

.payment-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  margin-top: 1rem;
  border-top: 1px solid var(--c-border);
}

.payment-total-label {
  font-size: 0.9375rem;
  color: var(--c-text-secondary);
}

.payment-total-amount {
  font-size: 1.5rem;
  font-weight: 700;
}

.payment-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  font-style: italic;
  margin-top: 1rem;
}

.secure-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ============ CONFIRMATION ============ */

.confirmation {
  text-align: center;
}

.confirmation-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 2px solid var(--c-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.confirmation-icon svg {
  width: 32px;
  height: 32px;
  color: var(--c-text-secondary);
}

.confirmation-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.confirmation-text {
  color: var(--c-text-secondary);
  font-size: 0.9375rem;
  max-width: 400px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.summary-section {
  text-align: left;
  margin-bottom: 1.5rem;
}

.summary-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
}

.summary-table td {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9375rem;
}

.summary-table td:first-child {
  color: var(--c-text-secondary);
}

.summary-table td:last-child {
  text-align: right;
  font-weight: 500;
}

.summary-table tr:last-child td {
  border-bottom: none;
}

.deposit-paid {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--c-success);
  font-weight: 600;
}

.print-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--c-text-secondary);
  font-size: 0.875rem;
  text-decoration: none;
  margin-top: 1rem;
}

.print-link:hover {
  color: var(--c-primary);
}

/* ============ LOADING ============ */

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(248, 246, 243, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 1000;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--c-border);
  border-top-color: var(--c-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.loading-text {
  color: var(--c-text-secondary);
  font-size: 0.9375rem;
}

/* ============ ALERTS ============ */

.alert {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.alert-error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #DC2626;
}

/* ============ UTILITIES ============ */

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ============ RESPONSIVE ============ */

/* ── Booking calendar mobile tweaks ──────────────────────────── */
@media (max-width: 540px) {
  .calendar-grid {
    gap: 3px;
  }

  .calendar-dow {
    font-size: 0.5625rem;
    padding: 0.3rem 0;
  }

  .calendar-day {
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 6px;
  }

  /* Move the closed ✕ below the number instead of overlapping it */
  .calendar-day.closed-by-admin::after {
    top: auto;
    bottom: 2px;
    right: 50%;
    transform: translateX(50%);
    font-size: 0.4rem;
  }

  /* Special event info icon — smaller on mobile */
  .day-event-info {
    font-size: 0.55rem;
    top: 1px;
    right: 2px;
  }

  /* Tooltip disabled on touch; avoid phantom hover states */
  .calendar-day[data-tooltip]::before,
  .calendar-day[data-tooltip]::after {
    display: none;
  }
}

@media (max-width: 460px) {
  .booking-page {
    padding: 1.5rem 1rem;
    justify-content: flex-start;
    overflow-x: hidden;
  }
  
  /* Shrink stepper to fit narrow viewports (no horizontal scroll) */
  .stepper {
    gap: 6px;
  }
  
  .stepper-step {
    flex: 0 0 28px;
    min-width: 28px;
  }
  
  .stepper-circle {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
  
  .stepper-line {
    flex: 0 0 22px;
    width: 22px;
    margin-top: 15px;
  }
  
  .stepper-label {
    font-size: 0.5rem;
    margin-top: 4px;
    visibility: hidden;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .service-buttons {
    flex-direction: column;
  }
  
  .btn-group {
    flex-direction: column-reverse;
  }
  
  .btn-group .btn-back {
    justify-content: center;
  }
}
