/**
 * Encore Frontend Booking Styles
 * Styling for the booking interface
 */

/* Main Booking Wrapper */
.encore-booking-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Show Header */
.encore-show-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f6f7f7;
    border-radius: 8px;
}

.encore-show-artwork img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.encore-show-title {
    margin: 0 0 15px 0;
    font-size: 28px;
    color: #1d2327;
}

.encore-show-excerpt {
    margin-bottom: 15px;
    color: #50575e;
    line-height: 1.6;
}

.encore-venue-info {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    border-left: 3px solid #2271b1;
}

.encore-venue-info strong {
    display: block;
    margin-bottom: 8px;
    color: #1d2327;
}

.encore-venue-info a {
    color: #2271b1;
    text-decoration: none;
}

.encore-venue-info a:hover {
    text-decoration: underline;
}

/* Booking Steps */
.encore-booking-step {
    margin-bottom: 30px;
}

.encore-booking-step h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #dcdcde;
    color: #1d2327;
}

/* Performance List */
.encore-performance-list {
    display: grid;
    gap: 15px;
}

.encore-performance-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border: 2px solid #dcdcde;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.encore-performance-item.available {
    border-color: #2271b1;
    cursor: pointer;
    position: relative;
}

.encore-performance-item.available::after {
    content: "→";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 700;
    color: #2271b1;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.encore-performance-item.available:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    background: #f0f6fc;
}

.encore-performance-item.available:hover::after {
    opacity: 1;
    right: 15px;
}

.encore-performance-item.unavailable {
    opacity: 0.6;
    background: #f6f7f7;
}

.encore-perf-datetime {
    flex: 1;
}

.encore-perf-date {
    font-size: 18px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 5px;
}

.encore-perf-time {
    font-size: 16px;
    color: #50575e;
}

.encore-perf-availability {
    text-align: right;
    min-width: 150px;
}

.encore-seats-remaining {
    color: #2271b1;
    font-weight: 600;
}

.encore-status-sold-out {
    color: #d63638;
    font-weight: 600;
}

.encore-status-not-on-sale {
    color: #8c8f94;
    font-style: italic;
}

.encore-no-performances {
    padding: 40px;
    text-align: center;
    color: #646970;
    background: #f6f7f7;
    border-radius: 8px;
}

/* Buttons */
.encore-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.encore-btn-primary {
    background: #2271b1;
    color: #fff;
}

.encore-btn-primary:hover:not(:disabled) {
    background: #135e96;
}

.encore-btn-primary:disabled {
    background: #8c8f94;
    cursor: not-allowed;
    opacity: 0.6;
}

.encore-btn-secondary {
    background: #fff;
    color: #2271b1;
    border: 1px solid #2271b1;
}

.encore-btn-secondary:hover {
    background: #f0f6fc;
}

.encore-select-performance {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.encore-select-performance:hover {
    background: #135e96;
}

/* Selected Performance Summary */
.encore-selected-performance {
    margin-bottom: 20px;
    padding: 15px;
    background: #f0f6fc;
    border-left: 4px solid #2271b1;
    border-radius: 4px;
}

.encore-perf-summary {
    font-size: 16px;
}

.encore-perf-summary strong {
    color: #1d2327;
}

/* Timer */
.encore-timer {
    display: inline-block;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: #f0f6fc;
    border: 2px solid #2271b1;
    border-radius: 4px;
    font-size: 16px;
}

.encore-timer-countdown {
    font-weight: 700;
    color: #2271b1;
    margin-left: 8px;
    font-family: monospace;
    font-size: 18px;
}

.encore-timer-warning {
    background: #fcf0f1;
    border-color: #d63638;
    animation: pulse 1s infinite;
}

.encore-timer-warning .encore-timer-countdown {
    color: #d63638;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* GA Selector */
.encore-ga-selector {
    padding: 20px;
    background: #fff;
    border: 2px solid #dcdcde;
    border-radius: 8px;
    margin-bottom: 20px;
}

.encore-ga-selector h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #1d2327;
}

.encore-quantity-controls {
    display: grid;
    gap: 15px;
}

.encore-qty-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f1;
}

.encore-qty-row:last-child {
    border-bottom: none;
}

.encore-qty-row label {
    font-weight: 600;
    color: #1d2327;
}

.encore-qty-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.encore-qty-input input[type="number"] {
    width: 60px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 8px;
    border: 2px solid #dcdcde;
    border-radius: 4px;
}

.encore-qty-minus,
.encore-qty-plus {
    width: 36px;
    height: 36px;
    font-size: 20px;
    font-weight: 700;
    background: #f0f0f1;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.encore-qty-minus:hover,
.encore-qty-plus:hover {
    background: #dcdcde;
}

/* Seat Map */
.encore-seat-map {
    padding: 30px;
    background: #fff;
    border: 2px solid #dcdcde;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.encore-stage-indicator {
    text-align: center;
    padding: 15px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    background: #1d2327;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    letter-spacing: 2px;
    width: fit-content;
}

.encore-section {
    margin-bottom: 40px;
}

.encore-section-name {
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #2271b1;
    color: #2271b1;
    font-size: 18px;
}

.encore-seat-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.encore-row-label {
    min-width: 30px;
    text-align: right;
    font-weight: 700;
    color: #50575e;
    padding-right: 10px;
}

.encore-seat,
.encore-seat-spacer {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.encore-seat {
    border: 2px solid;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.encore-seat-spacer {
    /* Empty spacer for grid gaps/aisles - maintain same width as seats */
    border: none;
    background: transparent;
}

.encore-seat-available {
    border-color: #2271b1;
    color: #2271b1;
}

.encore-seat-available:hover {
    background: #f0f6fc;
    transform: scale(1.1);
}

.encore-seat-selected {
    background: #2271b1 !important;
    color: #fff !important;
    border-color: #135e96;
}

.encore-seat-reserved {
    border-color: #dba617;
    color: #8c8f94;
    background: #f9f0e5;
    cursor: not-allowed;
}

.encore-seat-sold {
    border-color: #8c8f94;
    color: #8c8f94;
    background: #f0f0f1;
    cursor: not-allowed;
}

.encore-seat-wheelchair {
    position: relative;
}

.encore-seat-wheelchair::after {
    content: "♿";
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 14px;
}

/* Seat Legend */
.encore-seat-legend {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #dcdcde;
    flex-wrap: wrap;
}

.encore-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #50575e;
}

.encore-legend-item .encore-seat {
    width: 24px;
    height: 24px;
    font-size: 10px;
}

/* Venue Instructions Box */
.encore-venue-instructions {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    margin: 20px 0;
    background: #f0f6fc;
    border: 2px solid #2271b1;
    border-radius: 6px;
    align-items: flex-start;
}

.encore-instructions-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.encore-instructions-content {
    flex: 1;
    color: #1d2327;
    font-size: 14px;
    line-height: 1.5;
}

/* Pricing Info */
.encore-pricing-info {
    padding: 20px;
    background: #f6f7f7;
    border-radius: 8px;
    margin-bottom: 20px;
}

.encore-pricing-info h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #1d2327;
}

.encore-price-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.encore-price-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dcdcde;
}

.encore-price-list li:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 600;
    color: #1d2327;
}

.price-amount {
    font-weight: 700;
    color: #2271b1;
    font-size: 16px;
}

/* Action Buttons */
.encore-action-buttons {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid #dcdcde;
}

/* Loading Overlay */
.encore-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.encore-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f1;
    border-top-color: #2271b1;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.encore-loading p {
    margin-top: 15px;
    font-size: 16px;
    color: #50575e;
}

.encore-loading-seats {
    padding: 40px;
    text-align: center;
    color: #646970;
}

/* Seated Quantity Selector */
.encore-seated-selector {
    padding: 30px;
    background: #fff;
    border: 2px solid #2271b1;
    border-radius: 8px;
    margin-bottom: 20px;
}

.encore-seated-selector h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #1d2327;
}

.encore-instruction {
    margin-bottom: 20px;
    padding: 15px;
    background: #f0f6fc;
    border-left: 4px solid #2271b1;
    border-radius: 4px;
    color: #1d2327;
    font-size: 15px;
}

.encore-proceed-to-seats {
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* Seat Selection Instructions */
.encore-seat-instruction {
    margin-bottom: 20px;
    padding: 20px;
    background: #f0f6fc;
    border: 2px solid #2271b1;
    border-radius: 8px;
}

.encore-seat-instruction p {
    margin: 5px 0;
    font-size: 15px;
}

.encore-seat-instruction strong {
    color: #1d2327;
    font-size: 18px;
}

.encore-selection-status {
    margin-top: 15px;
    padding: 10px 15px;
    background: #fff;
    border-radius: 4px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.encore-selected-count {
    color: #2271b1;
    font-size: 20px;
}

/* Customer Form Styles - Compact for Step 3 */
.encore-customer-form {
    max-width: 800px;
}

.encore-step-checkout .encore-form-section {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
}

.encore-step-checkout .encore-form-section h4 {
    margin: 0 0 12px 0;
    font-size: 17px;
    color: #1d2327;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f1;
}

.encore-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 12px;
}

.encore-form-field {
    display: flex;
    flex-direction: column;
}

.encore-form-field label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d2327;
}

.encore-form-field .required {
    color: #d63638;
}

.encore-form-field input[type="text"],
.encore-form-field input[type="email"],
.encore-form-field input[type="tel"],
.encore-form-field select {
    padding: 10px 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.encore-form-field input:focus,
.encore-form-field select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.encore-field-note {
    margin-top: 8px;
    font-size: 13px;
    color: #646970;
    font-style: italic;
}

/* Donation Section - Green Theme */
.encore-donation-section {
    background: #e8f5e9 !important;
    border: 3px solid #79ab9b !important;
}

.encore-donation-intro {
    margin: 0 0 15px 0;
    font-size: 15px;
    color: #1d2327;
    font-weight: 500;
}

.encore-donation-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 15px 0;
}

.encore-donation-btn {
    background: #fff;
    border: 2px solid #79ab9b ;
    border-radius: 8px;
    padding: 15px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.encore-donation-btn:hover {
    background: #f1f8f4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 80, 22, 0.15);
}

.encore-donation-btn.active {
    background: #79ab9b ;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.2);
}

.encore-donation-btn.active .encore-donation-label,
.encore-donation-btn.active .encore-donation-amount,
.encore-donation-btn.active .encore-donation-desc {
    color: #fff;
}

.encore-donation-label {
    font-weight: 700;
    font-size: 14px;
    color: #1d2327;
}

.encore-donation-amount {
    font-size: 20px;
    font-weight: 700;
    color: #79ab9b ;
}

.encore-donation-desc {
    font-size: 12px;
    color: #646970;
    font-style: italic;
}

.encore-custom-donation {
    margin-top: 15px;
    padding: 20px;
    background: #fff;
    border: 3px solid #79ab9b ;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.encore-custom-donation label {
    font-weight: 700;
    color: #79ab9b ;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.encore-custom-donation input[type="number"] {
    font-size: 24px !important;
    font-weight: 700 !important;
    padding: 15px !important;
    border: 2px solid #79ab9b  !important;
    border-radius: 6px !important;
    max-width: 200px !important;
    text-align: center;
}

.encore-custom-donation input[type="number"]:focus {
    outline: none;
    border-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.2) !important;
}

/* Marketing Consent */
.encore-marketing-consent {
    background: #f0f6fc;
    border-color: #2271b1;
}

.encore-consent-intro {
    margin-bottom: 15px;
    color: #1d2327;
}

.encore-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: background 0.2s;
}

.encore-checkbox-label:hover {
    background: rgba(255, 255, 255, 0.5);
}

.encore-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.encore-consent-note {
    margin-top: 15px;
    font-size: 12px;
    color: #646970;
}

/* Payment Method Section */
.encore-payment-method-section {
    background: #fcf0e5;
    border-color: #dba617;
}

/* Order Summary */
.encore-order-summary {
    margin-top: 30px;
    padding: 20px;
    background: #f6f7f7;
    border: 2px solid #2271b1;
    border-radius: 8px;
}

.encore-order-summary h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #1d2327;
}

.encore-summary-content {
    font-size: 14px;
    line-height: 1.8;
}

.encore-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #dcdcde;
}

.encore-summary-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 16px;
    padding-top: 15px;
    border-top: 2px solid #1d2327;
}

/* Confirmation Page Styles - ULTRA COMPACT FOR PRINTING */
.encore-confirmation-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.encore-confirmation-header {
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, #00a32a 0%, #008a20 100%);
    color: #fff;
    border-radius: 6px 6px 0 0;
    margin-bottom: 10px;
}

.encore-success-icon {
    font-size: 36px;
    margin-bottom: 5px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.encore-confirmation-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.encore-confirmation-details {
    padding: 0 10px 10px;
}

.encore-conf-section {
    margin-bottom: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 4px;
}

.encore-conf-order {
    text-align: center;
    background: #f0f6fc;
    border-color: #2271b1;
    padding: 10px;
}

.encore-conf-order-label {
    margin: 0 0 5px 0;
    font-size: 12px;
    color: #646970;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.encore-conf-order-number {
    font-size: 24px;
    font-weight: 700;
    color: #2271b1;
    margin: 0;
    font-family: monospace;
    letter-spacing: 1px;
}

.encore-conf-table {
    width: 100%;
    border-collapse: collapse;
}

.encore-conf-table tr {
    border-bottom: 1px solid #f0f0f1;
}

.encore-conf-table tr:last-child {
    border-bottom: none;
}

.encore-conf-table td {
    padding: 6px 0 6px 8px;
    font-size: 13px;
}

.encore-conf-table td:first-child {
    color: #646970;
    width: 100px;
}

.encore-conf-table td:last-child {
    color: #1d2327;
}

.encore-conf-important {
    background: #fcf9e8;
    border-color: #dba617;
    padding: 10px;
}

.encore-conf-important h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #1d2327;
    font-weight: 700;
}

.encore-conf-important ul {
    margin: 0;
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.6;
    color: #1d2327;
}

.encore-conf-important li {
    margin-bottom: 4px;
}

.encore-conf-thank-you {
    background: #f0f6fc;
    border-color: #2271b1;
    text-align: center;
    padding: 12px;
}

.encore-conf-thank-you p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #1d2327;
    font-weight: 500;
}

.encore-confirmation-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
    border-top: 1px solid #dcdcde;
}

.encore-confirmation-actions .encore-btn {
    min-width: 120px;
    padding: 6px 12px;
    font-size: 12px;
}

/* Print Styles */
@media print {
    .encore-show-header,
    .encore-booking-step:not(.encore-step-confirmation),
.encore-confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Square Payment Form */
.encore-square-payment {
    background: #f0f6fc;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #2271b1;
    text-align: center;
}

.encore-square-payment h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1d2327;
    font-size: 20px;
    text-align: center;
}

.encore-square-payment p {
    margin: 0 0 20px 0;
    color: #50575e;
    text-align: center;
}

.square-card-container {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #8c8f94;
    margin: 20px auto;
    min-height: 80px;
    max-width: 500px;
}

.encore-payment-errors {
    background: #fcf0f1;
    border: 2px solid #d63638;
    border-radius: 6px;
    padding: 12px 15px;
    margin: 15px auto;
    color: #1d2327;
    max-width: 500px;
    text-align: left;
}

.encore-payment-errors .error-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

#encore-pay-with-square {
    width: auto;
    min-width: 250px;
    max-width: 400px;
    display: block;
    margin: 20px auto 0 auto !important;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

#encore-pay-with-square:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
    
    .encore-confirmation-header {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
    
    .encore-success-icon {
        color: #000;
    }
    
    .encore-conf-order-number {
        color: #000;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .encore-donation-options {
        grid-template-columns: 1fr;
    }
    
    .encore-form-row {
        grid-template-columns: 1fr;
    }
    .encore-show-header {
        grid-template-columns: 1fr;
    }
    
    .encore-performance-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .encore-perf-availability {
        text-align: center;
    }
    
    .encore-qty-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .encore-action-buttons {
        flex-direction: column;
    }
    
    .encore-seat-map {
        padding: 15px 10px;
    }
    
    .encore-seat,
    .encore-seat-spacer {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .encore-seat-legend {
        flex-direction: column;
        gap: 10px;
    }
    
    .encore-confirmation-header h2 {
        font-size: 24px;
    }
    
    .encore-conf-order-number {
        font-size: 28px;
    }
    
    .encore-confirmation-actions {
        flex-direction: column;
    }
    
    .encore-conf-table td:first-child {
        width: 100px;
        font-size: 14px;
    }
}
