/**
 * FormCraft Theme: Camp Shape
 *
 * Nature-inspired theme matching the Camp Shape brand identity.
 * Features earthy greens, warm yellows, and organic rounded shapes.
 * Requires Baloo 2 (headings, 700/800) and Nunito (body, 400/600/700) from Google Fonts.
 *
 * Color Palette:
 * - Primary Green:   #1E8A5A
 * - Light Green:     #2EA86E
 * - Pale Green BG:   #EAF6F0
 * - Accent Yellow:   #FFCF47
 * - Dark Yellow:     #E6B800
 * - Orange:          #FF7840
 * - Navy/Dark:       #1A2B3C
 * - Body Text Gray:  #6B7280
 * - Border:          #E2E8E4
 * - Page Background: #FAFAF7
 */

/* =========================================================================
   Form Wrapper - Container with organic shadow and rounding
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape {
    background: #fff;
    max-width: 680px;
    margin: 0 auto;
    margin-top: -8px; /* Issue 5: Reduce dead space above form */
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(30, 138, 90, 0.16);
    overflow: visible; /* Issue 1: Prevent text clipping */
}

.fc-form-wrapper.fc-theme-camp-shape .fc-form {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #1A2B3C;
    background: #fff;
    padding: 0;
}

/* =========================================================================
   Form Header - Gradient with badge, title, and tent decoration
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-form-header {
    background: linear-gradient(135deg, #1E8A5A 0%, #155E3F 100%);
    padding: 40px 40px 32px;
    padding-left: 40px; /* Issue 1: Ensure adequate left padding */
    position: relative;
    overflow: visible; /* Issue 1: Prevent text clipping */
    border-radius: 24px 24px 0 0; /* Top corners only */
}

.fc-form-wrapper.fc-theme-camp-shape .fc-form-header-content {
    position: relative;
    z-index: 2;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 207, 71, 0.2);
    color: #FFCF47;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-header-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FFCF47;
    border-radius: 50%;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-header-title {
    font-family: 'Baloo 2', cursive, sans-serif;
    font-weight: 800;
    font-size: 1.85rem;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-header-highlight {
    color: #FFCF47;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-header-subtitle {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
    max-width: 480px;
}

/* Tent decoration */
.fc-form-wrapper.fc-theme-camp-shape .fc-header-decoration {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 140px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 120'%3E%3Cpath fill='%23155E3F' d='M70 10L130 110H10L70 10z'/%3E%3Cpath fill='%231E8A5A' d='M70 10L100 110H40L70 10z'/%3E%3Cpath fill='%23EAF6F0' d='M70 55L80 110H60L70 55z'/%3E%3Ccircle cx='110' cy='25' r='3' fill='%23FFCF47' opacity='0.6'/%3E%3Ccircle cx='125' cy='45' r='2' fill='%23FFCF47' opacity='0.4'/%3E%3Ccircle cx='95' cy='15' r='2' fill='%23FFCF47' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    opacity: 0.9;
    z-index: 1;
}

/* =========================================================================
   Step Progress - Issue 3: White background with border separation
   Supports both old (.fc-step-indicator) and new (.fc-step-item) HTML
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-step-progress {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 0 !important;
    background: #fff !important; /* Issue 3: White background */
    padding: 28px 32px !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #E2E8E4 !important; /* Issue 3: Bottom border */
}

/* -------------------------------------------------------------------------
   New HTML structure (.fc-step-item)
   ------------------------------------------------------------------------- */

.fc-form-wrapper.fc-theme-camp-shape .fc-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 140px;
}

/* Circle */
.fc-form-wrapper.fc-theme-camp-shape .fc-step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E2E8E4; /* Issue 2: Gray background for upcoming steps */
    border: 2px solid #E2E8E4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.2s ease;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-number {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    color: #6B7280; /* Issue 2: Gray number for upcoming */
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    text-align: center;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-check {
    display: none !important; /* Issue 2: Hide checkmark by default */
    font-size: 1.1rem;
    line-height: 1;
    color: #fff;
    align-items: center;
    justify-content: center;
}

/* Label below circle */
.fc-form-wrapper.fc-theme-camp-shape .fc-step-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-top: 10px;
    text-align: center;
}

/* Connector line */
.fc-form-wrapper.fc-theme-camp-shape .fc-step-connector {
    position: absolute;
    top: 22px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 2px;
    background: #E2E8E4;
    z-index: 1;
}

/* Active step - Issue 2: Green with glow */
.fc-form-wrapper.fc-theme-camp-shape .fc-step-item.fc-step-active .fc-step-circle {
    background: #1E8A5A;
    border-color: #1E8A5A;
    box-shadow: 0 0 0 4px rgba(30, 138, 90, 0.2); /* Issue 2: Ring glow */
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-item.fc-step-active .fc-step-number {
    color: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-item.fc-step-active .fc-step-check {
    display: none !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-item.fc-step-active .fc-step-label {
    color: #1E8A5A;
}

/* Completed step - Issue 2: Green with checkmark */
.fc-form-wrapper.fc-theme-camp-shape .fc-step-item.fc-step-complete .fc-step-circle {
    background: #1E8A5A;
    border-color: #1E8A5A;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-item.fc-step-complete .fc-step-number {
    display: none !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-item.fc-step-complete .fc-step-check {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-item.fc-step-complete .fc-step-label {
    color: #1E8A5A;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-item.fc-step-complete .fc-step-connector {
    background: #1E8A5A;
}

/* -------------------------------------------------------------------------
   Old HTML structure (.fc-step-indicator) - Backwards compatibility
   ------------------------------------------------------------------------- */

.fc-form-wrapper.fc-theme-camp-shape .fc-step-indicator {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #E2E8E4 !important; /* Issue 2: Gray for upcoming */
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    margin: 0 20px !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-indicator .fc-step-number {
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    color: #6B7280 !important; /* Issue 2: Gray number */
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-indicator .fc-step-title {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9CA3AF;
    white-space: nowrap;
}

/* Active step (old structure) */
.fc-form-wrapper.fc-theme-camp-shape .fc-step-indicator.fc-step-active {
    background: #1E8A5A !important;
    box-shadow: 0 0 0 4px rgba(30, 138, 90, 0.2) !important; /* Issue 2: Glow */
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-indicator.fc-step-active .fc-step-number {
    color: #fff !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-indicator.fc-step-active .fc-step-title {
    color: #1E8A5A;
}

/* Completed step (old structure) */
.fc-form-wrapper.fc-theme-camp-shape .fc-step-indicator.fc-step-complete {
    background: #1E8A5A !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-indicator.fc-step-complete .fc-step-number {
    color: #fff !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-indicator.fc-step-complete .fc-step-number::after {
    content: '✓';
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-indicator.fc-step-complete .fc-step-title {
    color: #1E8A5A;
}

/* =========================================================================
   Fields Container - Issue 4: Card styling for form body
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-fields {
    padding: 24px 32px 24px !important;
    gap: 0 20px;
    background: #fff;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-field {
    margin-bottom: 24px;
}

/* Ensure the form element itself has proper styling */
.fc-form-wrapper.fc-theme-camp-shape .fc-form {
    background: #fff !important;
    border-radius: 0 0 24px 24px !important; /* Issue 4: Bottom corners only */
}

/* =========================================================================
   Labels - Nunito 700, small caps style
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: #1A2B3C;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-required-mark {
    color: #FF7840;
    font-weight: 700;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-field-description {
    color: #6B7280;
    font-size: 0.82rem;
    font-weight: 400;
    margin: 4px 0 8px;
}

/* =========================================================================
   Text Inputs, Email, Tel, Number, URL, Password - Issue 6: Styled inputs
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-input,
.fc-form-wrapper.fc-theme-camp-shape input.fc-input,
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="text"],
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="email"],
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="tel"],
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="url"],
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="number"],
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="password"],
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="date"],
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="time"] {
    background: #FAFAF7 !important;
    border: 2px solid #E2E8E4 !important;
    border-radius: 8px !important;
    padding: 11px 14px !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1rem !important;
    color: #1A2B3C !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-input:focus,
.fc-form-wrapper.fc-theme-camp-shape input.fc-input:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="text"]:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="email"]:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="tel"]:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="url"]:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="number"]:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="password"]:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="date"]:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-form input[type="time"]:focus {
    outline: none !important;
    border-color: #1E8A5A !important;
    box-shadow: 0 0 0 3px rgba(30, 138, 90, 0.12) !important;
    background: #fff !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-input::placeholder {
    color: #9CA3AF;
}

/* =========================================================================
   Textarea - Issue 6: Styled textareas
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-textarea,
.fc-form-wrapper.fc-theme-camp-shape .fc-form textarea {
    background: #FAFAF7 !important;
    border: 2px solid #E2E8E4 !important;
    border-radius: 8px !important;
    padding: 11px 14px !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1rem !important;
    color: #1A2B3C !important;
    resize: vertical !important;
    min-height: 100px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-textarea:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-form textarea:focus {
    outline: none !important;
    border-color: #1E8A5A !important;
    box-shadow: 0 0 0 3px rgba(30, 138, 90, 0.12) !important;
    background: #fff !important;
}

/* =========================================================================
   Select Dropdowns - Issue 6: Styled selects
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-select,
.fc-form-wrapper.fc-theme-camp-shape .fc-form select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background: #FAFAF7 !important;
    border: 2px solid #E2E8E4 !important;
    border-radius: 8px !important;
    padding: 11px 40px 11px 14px !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1rem !important;
    color: #1A2B3C !important;
    cursor: pointer !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231E8A5A' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-select:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-form select:focus {
    outline: none !important;
    border-color: #1E8A5A !important;
    box-shadow: 0 0 0 3px rgba(30, 138, 90, 0.12) !important;
    background-color: #fff !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-select option,
.fc-form-wrapper.fc-theme-camp-shape .fc-form select option {
    background: #fff !important;
    color: #1A2B3C !important;
    padding: 12px !important;
}

/* =========================================================================
   Radio & Checkbox - Full-width card style
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-radio-group,
.fc-form-wrapper.fc-theme-camp-shape .fc-checkbox-group {
    gap: 10px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-radio-label,
.fc-form-wrapper.fc-theme-camp-shape .fc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 2px solid #E2E8E4;
    border-radius: 8px;
    color: #1A2B3C;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-radio-label:hover,
.fc-form-wrapper.fc-theme-camp-shape .fc-checkbox-label:hover {
    border-color: #2EA86E;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-radio-label:has(input:checked),
.fc-form-wrapper.fc-theme-camp-shape .fc-checkbox-label:has(input:checked) {
    border-color: #1E8A5A;
    background: #EAF6F0;
}

/* Fallback for browsers without :has() support */
.fc-form-wrapper.fc-theme-camp-shape .fc-radio-label input:checked ~ .fc-radio-text,
.fc-form-wrapper.fc-theme-camp-shape .fc-checkbox-label input:checked ~ .fc-checkbox-text {
    color: #1E8A5A;
    font-weight: 700;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-radio-label input,
.fc-form-wrapper.fc-theme-camp-shape .fc-checkbox-label input {
    width: 20px;
    height: 20px;
    accent-color: #1E8A5A;
    flex-shrink: 0;
}

/* =========================================================================
   Toggle Switch
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-toggle-label {
    color: #1A2B3C;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-toggle-track {
    background: #E2E8E4;
    border-radius: 12px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-toggle-switch input:checked + .fc-toggle-track {
    background: #1E8A5A;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-toggle-thumb {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* =========================================================================
   Range Slider
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-range {
    accent-color: #1E8A5A;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-range-value {
    background: #EAF6F0;
    color: #1E8A5A;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

/* =========================================================================
   Rating Stars
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-rating-star {
    color: #E2E8E4;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-rating-star.fc-star-active,
.fc-form-wrapper.fc-theme-camp-shape .fc-rating-star.fc-star-hover {
    color: #FFCF47;
}

/* =========================================================================
   NPS Scale
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-nps-btn {
    background: #fff;
    border: 2px solid #E2E8E4;
    border-radius: 8px;
    color: #6B7280;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-nps-btn:hover {
    border-color: #2EA86E;
    color: #1E8A5A;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-nps-btn.fc-nps-active {
    background: #1E8A5A;
    border-color: #1E8A5A;
    color: #fff;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-nps-labels {
    color: #6B7280;
    font-size: 0.75rem;
}

/* =========================================================================
   Likert Scale
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-likert-table th,
.fc-form-wrapper.fc-theme-camp-shape .fc-likert-table td {
    border-bottom-color: #EAF6F0;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-likert-col-header {
    color: #6B7280;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-likert-row-label {
    color: #1A2B3C;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-likert-cell input[type="radio"] {
    accent-color: #1E8A5A;
}

/* =========================================================================
   Signature Pad
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-signature-pad {
    background: #FAFAF7;
    border: 2px dashed #E2E8E4;
    border-radius: 8px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-signature-pad:hover {
    border-color: #2EA86E;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-signature-pad:active,
.fc-form-wrapper.fc-theme-camp-shape .fc-signature.fc-signature-filled .fc-signature-pad {
    border-style: solid;
    border-color: #1E8A5A;
    background: #fff;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-signature::after {
    color: #9CA3AF;
    font-family: 'Nunito', sans-serif;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-signature::before {
    border-bottom-color: #E2E8E4;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-signature-clear {
    background: #EAF6F0;
    border: 2px solid #E2E8E4;
    color: #1E8A5A;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-signature-clear:hover {
    background: #fff;
    border-color: #1E8A5A;
}

/* =========================================================================
   File Upload
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-file-dropzone {
    background: #FAFAF7;
    border: 2px dashed #E2E8E4;
    border-radius: 8px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-dropzone:hover,
.fc-form-wrapper.fc-theme-camp-shape .fc-file-dropzone.fc-dragover {
    border-color: #1E8A5A;
    background: #EAF6F0;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-icon {
    color: #1E8A5A;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-text {
    color: #1A2B3C;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-hint {
    color: #6B7280;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-upload.fc-has-files .fc-file-dropzone {
    border-color: #1E8A5A;
    background: #EAF6F0;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-upload.fc-has-files .fc-file-dropzone::after {
    color: #1E8A5A;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-item {
    background: #fff;
    border: 2px solid #1E8A5A;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(30, 138, 90, 0.1);
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-item-icon {
    background: #EAF6F0;
    color: #1E8A5A;
    border-radius: 6px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-item-name {
    color: #1A2B3C;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-item-size {
    color: #6B7280;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-item-check {
    background: #1E8A5A;
    border-radius: 50%;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-file-item-remove:hover {
    background: #FEF2F2;
    color: #E53E3E;
}

/* =========================================================================
   Layout Elements - Headings and Sections
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-heading {
    font-family: 'Baloo 2', cursive, sans-serif;
    font-weight: 800;
    color: #1E8A5A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #EAF6F0;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-paragraph {
    color: #6B7280;
    font-family: 'Nunito', sans-serif;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-divider {
    border-top: 2px solid #EAF6F0;
    margin: 16px 0;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-html-block {
    color: #1A2B3C;
    font-family: 'Nunito', sans-serif;
}

/* =========================================================================
   Submit Button - Yellow pill with shadow
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-submit-wrap {
    padding: 16px 32px 32px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-btn {
    font-family: 'Baloo 2', cursive, sans-serif;
    border-radius: 50px;
    font-weight: 700;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-btn-submit {
    background: #FFCF47;
    border: none;
    color: #1A2B3C;
    font-family: 'Baloo 2', cursive, sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    padding: 16px 36px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 207, 71, 0.45);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-btn-submit:hover {
    background: #E6B800;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 207, 71, 0.55);
}

.fc-form-wrapper.fc-theme-camp-shape .fc-btn-submit:active {
    transform: translateY(0);
}

.fc-form-wrapper.fc-theme-camp-shape .fc-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Previous/Next buttons for multi-step */
.fc-form-wrapper.fc-theme-camp-shape .fc-btn-prev,
.fc-form-wrapper.fc-theme-camp-shape .fc-btn-next {
    background: #EAF6F0;
    border: 2px solid #E2E8E4;
    color: #1E8A5A;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    padding: 12px 24px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-btn-prev:hover,
.fc-form-wrapper.fc-theme-camp-shape .fc-btn-next:hover {
    background: #fff;
    border-color: #1E8A5A;
}

/* Small buttons */
.fc-form-wrapper.fc-theme-camp-shape .fc-btn-sm {
    font-size: 0.85rem;
    padding: 8px 16px;
}

/* =========================================================================
   Payment Styles
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-payment {
    background: #FAFAF7;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid #EAF6F0;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-payment-value {
    color: #1A2B3C;
    font-family: 'Baloo 2', cursive, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-payment-symbol {
    color: #6B7280;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-product-option {
    background: #fff;
    border: 2px solid #E2E8E4;
    border-radius: 8px;
    padding: 14px 16px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-product-option:hover {
    border-color: #2EA86E;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-product-price {
    color: #1E8A5A;
    font-family: 'Baloo 2', cursive, sans-serif;
    font-weight: 700;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-payment-unit-price {
    color: #6B7280;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-subtotal-value {
    color: #1E8A5A;
    font-family: 'Baloo 2', cursive, sans-serif;
    font-weight: 700;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-payment-summary {
    background: #EAF6F0;
    border-radius: 8px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-payment-summary-total {
    border-top-color: #E2E8E4;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-summary-value {
    color: #1E8A5A;
    font-family: 'Baloo 2', cursive, sans-serif;
    font-weight: 700;
}

/* Stripe Card Element */
.fc-form-wrapper.fc-theme-camp-shape .fc-stripe-card-element {
    background: #FAFAF7;
    border: 2px solid #E2E8E4;
    border-radius: 8px;
    padding: 14px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-stripe-card-element:focus-within {
    border-color: #1E8A5A;
    box-shadow: 0 0 0 3px rgba(30, 138, 90, 0.12);
}

/* Payment Tabs */
.fc-form-wrapper.fc-theme-camp-shape .fc-payment-tab {
    background: #fff;
    border: 2px solid #E2E8E4;
    border-radius: 8px;
    color: #6B7280;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-payment-tab:hover {
    border-color: #2EA86E;
    color: #1E8A5A;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-payment-tab-active {
    border-color: #1E8A5A;
    background: #EAF6F0;
    color: #1E8A5A;
}

/* Has payment button override */
.fc-form-wrapper.fc-theme-camp-shape .fc-has-payment .fc-btn-submit {
    background: #FFCF47;
    border-color: #FFCF47;
}

/* Discount code */
.fc-form-wrapper.fc-theme-camp-shape .fc-discount-code-btn {
    color: #1E8A5A;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-discount-code-btn:hover {
    color: #2EA86E;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-discount-apply {
    background: #EAF6F0;
    border: 2px solid #E2E8E4;
    color: #1E8A5A;
    border-radius: 8px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-discount-apply:hover:not(:disabled) {
    background: #fff;
    border-color: #1E8A5A;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-discount-code-applied {
    background: #EAF6F0;
    border-color: #1E8A5A;
    color: #1E8A5A;
    border-radius: 8px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-discount-code-message.fc-discount-success {
    color: #1E8A5A;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-payment-summary-discount {
    color: #1E8A5A;
}

/* =========================================================================
   Validation Errors
   ========================================================================= */

/* Shake animation for error fields */
@keyframes fc-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

.fc-form-wrapper.fc-theme-camp-shape .fc-field-error {
    color: #DC2626;
    font-size: 0.85rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-field-error:not(:empty)::before {
    content: "⚠";
    font-size: 0.9rem;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-form-errors {
    color: #DC2626;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    background: #FEF2F2;
    border: 2px solid #FECACA;
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-form-errors::before {
    content: "⚠";
    font-size: 1.2rem;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-stripe-card-errors,
.fc-form-wrapper.fc-theme-camp-shape .fc-paypal-errors {
    color: #DC2626;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Error state on field container - background highlight */
.fc-form-wrapper.fc-theme-camp-shape .fc-field-has-error {
    background: #FEF2F2;
    border-radius: 10px;
    padding: 12px;
    margin: -12px;
    margin-bottom: 8px;
    animation: fc-shake 0.5s ease-in-out;
}

/* Error state on inputs */
.fc-form-wrapper.fc-theme-camp-shape .fc-field-has-error .fc-input,
.fc-form-wrapper.fc-theme-camp-shape .fc-field-has-error .fc-select,
.fc-form-wrapper.fc-theme-camp-shape .fc-field-has-error .fc-textarea {
    border-color: #DC2626 !important;
    background: #fff !important;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-field-has-error .fc-input:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-field-has-error .fc-select:focus,
.fc-form-wrapper.fc-theme-camp-shape .fc-field-has-error .fc-textarea:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}

/* Error state on radio/checkbox options */
.fc-form-wrapper.fc-theme-camp-shape .fc-field-has-error .fc-radio-option,
.fc-form-wrapper.fc-theme-camp-shape .fc-field-has-error .fc-checkbox-option {
    border-color: #DC2626 !important;
}

/* =========================================================================
   Success/Confirmation Message
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-success-message {
    background: linear-gradient(135deg, #EAF6F0 0%, #D4EDDA 100%);
    border: 2px solid #1E8A5A;
    border-radius: 14px;
    padding: 32px;
    color: #1E8A5A;
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 24px rgba(30, 138, 90, 0.1);
}

.fc-form-wrapper.fc-theme-camp-shape .fc-success-message::before {
    background: #1E8A5A;
    box-shadow: 0 4px 12px rgba(30, 138, 90, 0.3);
}

/* =========================================================================
   Date and Time Inputs
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape input[type="date"].fc-input,
.fc-form-wrapper.fc-theme-camp-shape input[type="time"].fc-input {
    color-scheme: light;
}

/* =========================================================================
   Color Input
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-color {
    border: 2px solid #E2E8E4;
    border-radius: 8px;
    background: #FAFAF7;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-color:focus {
    border-color: #1E8A5A;
    box-shadow: 0 0 0 3px rgba(30, 138, 90, 0.12);
}

/* =========================================================================
   Field Focus Visible (Keyboard navigation)
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-input:focus-visible,
.fc-form-wrapper.fc-theme-camp-shape .fc-select:focus-visible,
.fc-form-wrapper.fc-theme-camp-shape .fc-textarea:focus-visible,
.fc-form-wrapper.fc-theme-camp-shape .fc-btn:focus-visible {
    outline: 2px solid #1E8A5A;
    outline-offset: 2px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-rating-star:focus-visible {
    outline: 2px solid #FFCF47;
    border-radius: 4px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-nps-btn:focus-visible {
    outline: 2px solid #1E8A5A;
    outline-offset: 1px;
}

/* =========================================================================
   Thank You / Confirmation Screen
   ========================================================================= */

.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you {
    background: transparent;
    text-align: left;
}

/* Thank You Header - Green gradient */
.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-header {
    background: linear-gradient(135deg, #1E8A5A 0%, #155E3F 100%);
    border-radius: 24px 24px 0 0;
    padding: 44px;
    text-align: center;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-icon {
    width: 88px;
    height: 88px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-icon span {
    font-size: 2.6rem;
    line-height: 1;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-title {
    font-family: 'Baloo 2', cursive, sans-serif;
    font-weight: 800;
    font-size: 1.85rem;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-title .fc-highlight {
    color: #FFCF47;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-subtitle {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.6;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Thank You Body - White section */
.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-body {
    background: #fff;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 16px 56px rgba(30, 138, 90, 0.14);
    padding: 36px 44px 44px;
}

/* Section title */
.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-section-title {
    font-family: 'Baloo 2', cursive, sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1E8A5A;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #EAF6F0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-section-icon {
    font-size: 1rem;
}

/* Steps list */
.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-steps {
    margin-bottom: 28px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-step {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #E2E8E4;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-step.fc-step-last {
    border-bottom: none;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #EAF6F0;
    color: #1E8A5A;
    font-family: 'Baloo 2', cursive, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-content h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1A2B3C;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-step-content p {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.55;
}

/* Info box */
.fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-info {
    background: #FAFAF7;
    border: 2px solid #E2E8E4;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-info-icon {
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-info-content {
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    color: #1A2B3C;
    line-height: 1.55;
}

.fc-form-wrapper.fc-theme-camp-shape .fc-info-content strong {
    font-weight: 700;
    color: #1E8A5A;
}

/* =========================================================================
   Responsive Adjustments
   ========================================================================= */

@media screen and (max-width: 768px) {
    .fc-form-wrapper.fc-theme-camp-shape .fc-form-header {
        padding: 32px 24px 28px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-header-title {
        font-size: 1.5rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-header-decoration {
        width: 100px;
        height: 90px;
        right: 10px;
        opacity: 0.7;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-progress {
        padding: 20px 16px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-circle {
        width: 36px;
        height: 36px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-connector {
        top: 18px;
        left: calc(50% + 18px);
        width: calc(100% - 36px);
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-label {
        font-size: 0.6rem;
    }

    /* Thank You Screen - 768px */
    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-header {
        padding: 36px 28px;
        border-radius: 20px 20px 0 0;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-icon {
        width: 72px;
        height: 72px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-icon span {
        font-size: 2rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-title {
        font-size: 1.6rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-subtitle {
        font-size: 0.95rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-body {
        padding: 28px 28px 36px;
        border-radius: 0 0 20px 20px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-number-circle {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 600px) {
    .fc-form-wrapper.fc-theme-camp-shape {
        border-radius: 16px;
        margin: 0 8px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-form-header {
        padding: 28px 20px 24px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-header-badge {
        font-size: 0.6rem;
        padding: 5px 10px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-header-title {
        font-size: 1.3rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-header-subtitle {
        font-size: 0.85rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-header-decoration {
        display: none;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-fields {
        padding: 8px 20px 24px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-submit-wrap {
        padding: 16px 20px 24px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-progress {
        padding: 16px 12px;
        gap: 0;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-item {
        max-width: none;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-circle {
        width: 32px;
        height: 32px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-number {
        font-size: 0.85rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-connector {
        top: 16px;
        left: calc(50% + 16px);
        width: calc(100% - 32px);
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-label {
        font-size: 0.55rem;
        letter-spacing: 0.05em;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-btn-submit {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Thank You Screen - 600px */
    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-header {
        padding: 28px 20px;
        border-radius: 16px 16px 0 0;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-icon {
        width: 64px;
        height: 64px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-icon span {
        font-size: 1.75rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-title {
        font-size: 1.35rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-subtitle {
        font-size: 0.88rem;
        padding: 0 4px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-body {
        padding: 24px 20px 28px;
        border-radius: 0 0 16px 16px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-section-title {
        font-size: 0.95rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-steps {
        gap: 16px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-item-thank-you {
        gap: 12px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-number-circle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-content h3 {
        font-size: 0.9rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-step-content p {
        font-size: 0.82rem;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-thank-you-info {
        padding: 14px 16px;
        flex-direction: column;
        gap: 10px;
    }

    .fc-form-wrapper.fc-theme-camp-shape .fc-info-content {
        font-size: 0.82rem;
    }
}
