/* RP Booking Wizard Styles - Modern UI */

:root {
    /* UI Kit Palette */
    --rp-primary: #3b82f6;
    /* Modern Blue */
    --rp-primary-dark: #2563eb;
    --rp-secondary: #64748b;
    /* Slate */
    --rp-accent: #f1c40f;
    /* Yellow (Selected Seat) */
    --rp-success: #22c55e;
    /* Green (Free) */
    --rp-danger: #ef4444;
    /* Red (Occupied) */
    --rp-bg: #f8fafc;
    --rp-surface: #ffffff;
    --rp-border: #e2e8f0;
    --rp-text-main: #ffffff;
    --rp-text-muted: #cbd5e1;

    /* Spacing */
    --rp-radius: 8px;
    --rp-pad: 16px;
    --rp-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.rp-wizard-container {
    max-width: 1000px;
    margin: 20px auto;
    background: #000;
    border-radius: var(--rp-radius);
    box-shadow: var(--rp-shadow);
    padding: 30px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

/* Steps Indicator */
.rp-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    padding: 0 10px;
}

.rp-step {
    flex: 1;
    text-align: center;
    color: var(--rp-text-muted);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.rp-step.active,
.rp-step.completed {
    color: var(--rp-primary);
}

.rp-step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -50%;
    width: 100%;
    height: 2px;
    background: var(--rp-border);
    z-index: -1;
    transform: translateY(-50%);
}

.rp-step:first-child::after {
    display: none;
}


/* Filters */
.rp-filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    margin: 5px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
}

.rp-filter-btn:hover,
.rp-filter-btn.active {
    background: blue;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Event Grid */
.rp-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.rp-event-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    height: 520px;
    /* Increased height for longer excerpt */
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rp-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.rp-event-card.selected {
    box-shadow: 0 0 0 3px #f1c40f;
    /* Gold selection ring */
    border-color: #f1c40f;
}

/* Dark Overlay with better gradient */
.rp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.0) 30%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.95) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header Row (Badges) */
.rp-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Glassmorphism Badges */
.rp-date-badge {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    color: #fff;
    min-width: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.rp-db-month {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.rp-db-day {
    font-size: 20px;
    font-weight: 800;
    margin: 2px 0;
}

.rp-db-weekday {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.7;
}

.rp-time-badge {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    /* Pill shape */
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Selected Badge */
.rp-selected-badge {
    display: none;
    background-color: #f1c40f;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.rp-event-card.selected .rp-selected-badge {
    display: inline-block;
}

/* Bottom Content - Improved Hierarchy */
.rp-card-content-bottom {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rp-event-title {
    margin: 0;
    font-size: 18px;
    /* Reduced from 24px */
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.rp-short-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.rp-card-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    margin: 10px 0;
}

/* Footer (Price + Button) */
.rp-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center vertically */
    padding-top: 5px;
}

.rp-price-block {
    display: flex;
    flex-direction: column;
}

.rp-price-label {
    font-size: 9px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.rp-price-val {
    font-size: 18px;
    font-weight: 700;
    color: #f1c40f;
    /* Gold */
}

.rp-read-more-btn {
    background-color: #f1c40f !important;
    color: #000 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 30px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4) !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.rp-read-more-btn:hover {
    background-color: #d4ac0d !important;
    color: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(241, 196, 15, 0.6) !important;
}

/* Modal */
.rp-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rp-modal-content {
    background-color: #000;
    margin: auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rp-close-modal {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
}

.rp-close-modal:hover {
    color: blue;
}

/* Forms & Inputs */
.rp-guest-row {
    background: #f8fafc;
    border: 1px solid var(--rp-border);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: var(--rp-radius);
}

.rp-form-group {
    margin-bottom: 15px;
}

.rp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #fff !important;
    /* Force White Labels */
}

/* Number Spinner */
.rp-number-spinner {
    display: flex;
    align-items: center;
    background: transparent;
    /* Solid White Border */
    border-radius: 8px;
    width: fit-content;
}

.rp-spinner-input {
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    width: 60px;
    font-size: 16px;
    font-weight: bold;
    appearance: textfield;
    -moz-appearance: textfield;
    padding: 12px 0;
}

.rp-spinner-input::-webkit-outer-spin-button,
.rp-spinner-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.rp-spinner-btn {
    background: transparent;
    border: none;
    color: #fff !important;
    font-size: 20px;
    width: 45px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    margin: 0px 10px;
}

.rp-spinner-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.rp-form-group input:not(.rp-spinner-input),
.rp-addon-qty,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--rp-border);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    background: #fff;
    box-sizing: border-box;
    /* Fix sizing */
}

.rp-form-group input:focus {
    border-color: var(--rp-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Add-ons List */
#rp-addons-list {
    background: transparent;
    border: 1px solid #fff;
    padding: 15px;
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
}

/* Summary Section */
.rp-summary-section {
    background: transparent;
    border: 1px solid #fff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    margin-top: 20px;
    color: #fff;
}

.rp-summary-section h4,
.rp-summary-section p,
.rp-summary-section span,
.rp-summary-section label {
    color: #fff !important;
}

.rp-summary-section strong {
    color: #f1c40f !important;
    /* Gold highlights */
}

/* Map & Seats */
/* Map & Seats */
.rp-map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-radius: var(--rp-radius);
    overflow: visible;
    /* Allow markers near edge */
}

.rp-map-image {
    width: 100%;
    display: block;
    user-select: none;
}

.rp-map-overlay {
    position: absolute;
    inset: 0;
}

/* Seat Generic Style */
/* Seat Generic Style */
.rp-seat {
    position: absolute;
    background: #2ecc71;
    /* Solid Green for Available */
    border: 1px solid #fff;
    border-radius: 50%;
    width: 3.5%;
    height: auto;
    padding-bottom: 3.5%;
    cursor: pointer;
    font-size: 10px;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    transition: all 0.2s;
    margin-top: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 10;
    /* Ensure visibility */
}

.rp-seat::after {
    content: attr(data-seat-id);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rp-seat:hover {
    background: #27ae60;
    transform: translate(-50%, -50%) scale(1.15);
    z-index: 10;
}

.rp-seat.selected {
    background: #f1c40f !important;
    /* Solid Yellow for Selected */
    border-color: #fff;
    color: #000;
}

.rp-seat.occupied {
    background: #e74c3c !important;
    /* Solid Red for Occupied */
    border-color: #fff;
    opacity: 1;
    cursor: not-allowed;
    box-shadow: none;
}

.rp-seat.occupied:hover {
    transform: translate(-50%, -50%);
}

.rp-table-marker {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #2ecc71;
    /* Green Default */
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 20;
    transform: translate(-50%, -50%);
    transition: all 0.2s;
}

.rp-table-marker:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.rp-table-marker.occupied {
    background: #e74c3c;
    cursor: not-allowed;
    opacity: 0.8;
}

.rp-table-marker.selected {
    background: #f1c40f;
    color: #000;
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.4);
    border-color: #000;
}

.rp-table-marker.disabled {
    background: #95a5a6;
    cursor: not-allowed;
    opacity: 0.4;
}

/* Summary Box */
.rp-summary-box {
    background: transparent !important;
    border: 1px solid #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Buttons */
.rp-wizard-nav {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* ... keeping buttons ... */

/* Full Width Button */
.rp-btn-next-full {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
    display: flex;
}

/* Global Button Styles - Premium Gold */
.rp-btn,
.button,
button.rp-button,
.rp-read-more-btn {
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
}

/* Primary Action (Solid Gold) */
.rp-btn-next,
#rp-confirm-btn,
#rp-final-confirm-btn,
#rp-final-confirm-unified,
#rp-print-btn,
#rp-goto-step-2,
.rp-btn-primary,
.rp-btn-success {
    background-color: #f1c40f !important;
    color: #000 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px 40px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-transform: none !important;
    box-shadow: 0 5px 20px rgba(241, 196, 15, 0.4) !important;
    transition: all 0.3s ease !important;
}

.rp-btn-next:hover,
#rp-confirm-btn:hover,
#rp-final-confirm-btn:hover,
#rp-print-btn:hover,
#rp-goto-step-2:hover,
.rp-btn-primary:hover {
    background: #d4ac0d;
    /* Darker Gold */
    border-color: #d4ac0d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(241, 196, 15, 0.3);
}

/* Secondary Action (Outline Gold) */
.rp-btn-prev,
#rp-share-btn,
#rp-back-step-1,
#rp-back-step-2,
.rp-btn-outline {
    background: transparent;
    color: #f1c40f;
    /* Gold Text */
    border: 1px solid rgba(241, 196, 15, 0.5);
    /* Semi-transparent border */
}

.rp-btn-prev:hover,
#rp-share-btn:hover,
#rp-back-step-1:hover,
#rp-back-step-2:hover,
.rp-btn-outline:hover {
    border-color: #f1c40f;
    background: rgba(241, 196, 15, 0.1);
    /* Slight tint */
    color: #f1c40f;
    transform: translateY(-2px);
}

/* Disabled State */
.rp-btn:disabled,
.rp-btn-next:disabled,
#rp-final-confirm-btn:disabled {
    background: #555;
    border-color: #555;
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive (Mobile) */
@media (max-width: 600px) {
    .rp-wizard-container {
        padding: 15px;
        margin: 10px;
    }

    /* Wizard Nav - Mobile Layout: Textarea Top, Buttons Bottom Side-by-Side */
    .rp-wizard-nav {
        flex-direction: column !important;
        /* Stack vertical */
        align-items: stretch !important;
        gap: 15px;
        margin-top: 20px;
    }

    /* Textarea container override */
    .rp-wizard-nav>div:first-child {
        margin-right: 0 !important;
        width: 100% !important;
    }

    /* Buttons container override */
    .rp-wizard-nav>div:last-child {
        width: 100% !important;
        display: flex;
        gap: 10px;
    }

    /* Mobile Buttons Adjustments */
    #rp-back-step-1,
    #rp-back-step-2 {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        flex: 0 0 auto !important;
        /* Fixed size */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #rp-back-step-1 .rp-btn-text,
    #rp-back-step-2 .rp-btn-text {
        display: none;
    }

    #rp-back-step-1 .dashicons,
    #rp-back-step-2 .dashicons {
        margin: 0 !important;
        font-size: 20px;
        width: 20px;
        height: 20px;
    }

    /* Continue Button - Take remaining space */
    /* Continue Button - Take remaining space */
    .rp-wizard-nav #rp-confirm-btn,
    .rp-wizard-nav .rp-btn-next,
    .rp-wizard-nav #rp-final-confirm-unified {
        flex: 1 !important;
        width: auto !important;
        font-size: 14px !important;
        padding: 0 15px !important;
        height: 44px !important;
        /* Match back button height */
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
    }

    #rp-goto-step-2 {
        font-size: 14px !important;
        padding: 0 15px !important;
        height: 44px !important;
        width: auto !important;
        min-width: 0 !important;
        flex: 1 !important;
        margin: 0 !important;
    }

    .rp-wizard-nav .rp-btn {
        /* Remove previous generic style conflict if needed */
    }

    /* Filters - Horizontal Scroll (Keep this?) No, user said revert last changes */
    /* Wait, the user said "retroceder essas ultimas alteracoes" which implies reverting ALL of the changes I just made */
    /* So I should revert to the state where filters were not modified either */

    .rp-btn {
        /* Default width for other buttons */
        width: 100%;
    }

    /* High Contrast Time Buttons */
    .rp-time-btn {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.6) !important;
        color: #fff !important;
        padding: 10px 15px !important;
        font-weight: 600 !important;
    }

    .rp-time-btn:hover,
    .rp-time-btn.active {
        background: #f1c40f !important;
        color: #000 !important;
        border-color: #f1c40f !important;
        font-weight: 800 !important;
        box-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
    }

    .rp-table-marker {
        transform: translate(-50%, -50%) rotate(-90deg) !important;
    }

    .rp-map-container {
        width: 85vh;
        display: block;
        margin: 30vh auto;
        left: 50%;
        margin-left: -42.5vh;
        transform: rotate(90deg);
        transform-origin: center center;
        overflow: visible !important;
        /* Allow markers to bleed out */
    }
}

/* PREMIUM TICKET DARK MODE */
.rp-premium-success {
    text-align: center;
    color: #ffd700;
    /* Gold generic */
    max-width: 450px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.rp-success-header {
    margin-bottom: 25px;
}

.rp-success-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rp-success-icon .dashicons {
    font-size: 32px;
    color: #f1c40f;
    width: 32px;
    height: 32px;
}

.rp-header-title {
    font-size: 24px;
    color: #fff;
    margin: 0 0 5px;
}

.rp-success-header p {
    color: #888;
    font-size: 13px;
    margin: 0;
}

/* TICKET CONTAINER */
.rp-premium-ticket {
    background: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

/* Header Image */
.rp-ticket-header-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.rp-ticket-header-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.rp-ticket-header-img>* {
    position: relative;
    z-index: 2;
}

.rp-event-badge {
    background: #f1c40f;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.rp-ticket-header-img h3 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.rp-ticket-location {
    font-size: 12px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* PERFORATION DIVIDER */
.rp-ticket-divider-perf {
    height: 40px;
    background: #1f1f1f;
    position: relative;
    margin: 0 20px;
    border-bottom: 2px dashed #444;
}

.rp-ticket-divider-perf::before,
.rp-ticket-divider-perf::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #000;
    /* Match parent bg or pure black */
    border-radius: 50%;
    transform: translateY(-50%);
}

.rp-ticket-divider-perf::before {
    left: -30px;
}

.rp-ticket-divider-perf::after {
    right: -30px;
}

/* QR BODY */
.rp-ticket-body-qr {
    background: #1f1f1f;
    padding: 20px;
    text-align: center;
}

.rp-qr-box {
    background: #fff;
    /* White background for better contrast */
    padding: 10px;
    border-radius: 12px;
    display: inline-block;
}

.rp-qr-box img {
    width: 200px;
    /* Increased Size */
    height: 200px;
    display: block;
}

.rp-ticket-code {
    margin-top: 15px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #f1c40f;
    /* Gold */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

/* INFO GRID */
.rp-ticket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
    border-top: 1px dashed #333;
}

.rp-grid-item label {
    display: block;
    font-size: 10px;
    color: #f1c40f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.rp-grid-item span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: block;
}

/* FOOTER */
.rp-ticket-line {
    height: 1px;
    background: #333;
    margin: 0 20px;
}

.rp-ticket-footer-row {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.rp-tf-item label {
    display: block;
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.rp-tf-item span {
    color: #fff;
    font-weight: 600;
}

.rp-gold-text {
    color: #f1c40f !important;
    font-size: 18px;
}

.rp-tf-item.right {
    text-align: right;
}

/* BUTTONS */
.rp-premium-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rp-btn-gold {
    background: #f1c40f;
    color: #000;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rp-btn-gold:hover {
    background: #d4ac0d;
}

.rp-btn-gold-outline {
    background: transparent;
    color: #f1c40f;
    border: 1px solid #f1c40f;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rp-btn-gold-outline:hover {
    background: rgba(241, 196, 15, 0.1);
}



/* --- NEW GUEST FORM STYLES --- */

/* Progress Bar */
.rp-progress-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.rp-progress-step {
    flex: 1;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.rp-progress-step.active {
    background: #f1c40f;
}

/* Form Headers */
.rp-form-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #fff;
    text-align: left;
}

.rp-form-subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
    text-align: left;
}

/* Input Wrapper */
.rp-input-wrapper {
    position: relative;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 5px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.rp-input-wrapper:focus-within {
    border-color: #f1c40f;
    background: #333;
}

.rp-input-icon {
    font-size: 20px;
    color: #888;
    padding: 10px 10px 10px 15px;
    display: flex;
    align-items: center;
}

.rp-form-group .rp-input {
    background: transparent !important;
    border: none !important;
    background: transparent !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    margin: 0;
    transition: all 0.2s;
}

/* Force Uppercase for Addons */
.rp-addon-text,
#rp-ticket-addons {
    text-transform: uppercase !important;
}

#rp-ticket-addons-row label {
    text-transform: uppercase !important;
    /* Ensure label is also uppercase if not already */
}



.rp-form-group label {
    margin-bottom: 8px;
    display: block;
    color: #efefef;
    font-size: 14px;
    font-weight: 600;
}

/* Counter Box */
.rp-counter-box {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

.rp-counter-display {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    flex: 1;
}

/* Updated Spinner Buttons */
.rp-spinner-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #666;
    background: transparent;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    margin: 0;
    transition: all 0.2s;
}

.rp-spinner-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 16px;
}

.rp-spinner-btn.rp-plus {
    background: #f1c40f;
    border-color: #f1c40f;
    color: #000 !important;
}

.rp-spinner-btn.rp-plus:hover {
    background: #d4ac0d;
}

/* Full Width Button */
.rp-btn-next-full {
    width: 100%;
    background: #f1c40f;
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    transition: transform 0.2s, background 0.2s;
}

.rp-btn-next-full:hover {
    background: #d4ac0d;
    transform: translateY(-2px);
}

/* ========================================= */
/* PRINT OVERRIDES - FINAL COMPACT V3        */
/* ========================================= */
@media print {
    @page {
        size: A4 portrait;
        margin: 0;
        /* ABSOLUTELY ZERO MARGIN */
    }

    html,
    body {
        width: 100%;
        height: 100%;
        margin: 0 !important;
        padding: 0 !important;
        background-color: #fff !important;
    }

    /* Hide everything standard */
    body * {
        visibility: hidden;
    }

    /* Make Success Screen Visible */
    #rp-success-screen,
    #rp-success-screen * {
        visibility: visible;
    }

    /* Position Wrapper at VERY TOP */
    #rp-success-screen {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 5mm;
        /* Small padding wrapper */
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* The Ticket Card */
    .rp-premium-ticket {
        display: block !important;
        visibility: visible !important;
        position: relative;
        left: auto;
        top: auto;

        width: 95mm !important;
        margin: 0 auto !important;

        background-color: #1a1a1a !important;
        color: #fff !important;
        border: 1px solid #333 !important;
        border-radius: 8px !important;
        padding: 10px !important;

        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* Header Inside Ticket - TINY LOGO */
    .rp-print-header {
        display: block !important;
        visibility: visible !important;
        margin-bottom: 5px !important;
        text-align: center;
        border-bottom: 1px solid #444;
        padding-bottom: 5px;
    }

    .rp-print-header img {
        max-width: 20mm !important;
        /* 2cm Width */
        height: auto !important;
        display: inline-block;
    }

    .rp-print-header p,
    .rp-print-header h1 {
        color: #ccc !important;
        font-size: 8px !important;
        margin: 2px 0 0 0 !important;
    }

    /* Compact Elements */
    .rp-ticket-header-img {
        height: 80px !important;
        padding: 5px !important;
    }

    .rp-ticket-header-img h3 {
        font-size: 14px !important;
        margin-bottom: 2px !important;
    }

    .rp-ticket-location {
        font-size: 8px !important;
    }

    .rp-ticket-body-qr {
        padding: 5px !important;
    }

    .rp-qr-box {
        padding: 4px !important;
    }

    .rp-qr-box img {
        width: 90px !important;
        height: 90px !important;
    }

    .rp-ticket-code {
        margin-top: 5px !important;
        font-size: 12px !important;
    }

    .rp-ticket-divider-perf {
        margin: 5px 20px !important;
        height: 2px !important;
        border-top: 1px dashed #555 !important;
    }

    .rp-ticket-divider-perf::before,
    .rp-ticket-divider-perf::after {
        display: none !important;
    }

    .rp-ticket-grid {
        padding: 5px !important;
        gap: 4px !important;
    }

    .rp-grid-item span {
        font-size: 11px !important;
    }

    .rp-grid-item label {
        font-size: 8px !important;
    }

    .rp-ticket-footer-row {
        padding: 5px !important;
    }

    .rp-gold-text {
        font-size: 14px !important;
    }

    .rp-tf-item label {
        font-size: 8px !important;
    }

    .rp-ticket-line {
        margin: 5px 20px !important;
    }

    /* Colors */
    .rp-premium-ticket * {
        color: #fff !important;
    }

    .rp-event-badge {
        background: #f1c40f !important;
        color: #000 !important;
        font-size: 8px !important;
        padding: 2px 5px !important;
    }

    #rp-ticket-total {
        color: #f1c40f !important;
    }

    /* Hide Controls */
    .rp-premium-actions,
    #rp-print-btn,
    #rp-share-btn,
    #rp-back-to-home,
    .rp-success-header,
    .rp-success-icon,
    .rp-btn,
    .noprint {
        display: none !important;
    }
}

/* --- CONFIRMATION SCREEN REDESIGN 1.3.0 --- */

.rp-success-header-new {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.rp-main-heading {
    font-size: 28px;
    font-weight: 800;
    color: #f1c40f;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rp-sub-heading {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.rp-alert-box {
    background: rgba(230, 126, 34, 0.15);
    border: 1px solid rgba(230, 126, 34, 0.4);
    color: #e67e22;
    /* Orange highlight */
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
}

/* Info Grid Layout */
.rp-info-grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.rp-info-card-box {
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.2s;
}

.rp-info-card-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.rp-info-title {
    color: #f1c40f;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rp-btn-link-gold {
    display: inline-block;
    background: #f1c40f;
    color: #000 !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rp-btn-link-gold:hover {
    background: #d4ac0d;
    transform: translateY(-2px);
    color: #000 !important;
    text-decoration: none;
}

/* Footer Message */
.rp-footer-message p {
    height: 80px !important;
    padding: 5px !important;
}

.rp-ticket-header-img h3 {
    font-size: 14px !important;
    margin-bottom: 2px !important;
}

.rp-ticket-location {
    font-size: 8px !important;
}

.rp-ticket-body-qr {
    padding: 5px !important;
}

.rp-qr-box {
    padding: 4px !important;
}

.rp-qr-box img {
    width: 90px !important;
    height: 90px !important;
}

.rp-ticket-code {
    margin-top: 5px !important;
    font-size: 12px !important;
}

.rp-ticket-divider-perf {
    margin: 5px 20px !important;
    height: 2px !important;
    border-top: 1px dashed #555 !important;
}

.rp-ticket-divider-perf::before,
.rp-ticket-divider-perf::after {
    display: none !important;
}

.rp-ticket-grid {
    padding: 5px !important;
    gap: 4px !important;
}

.rp-grid-item span {
    font-size: 11px !important;
}

.rp-grid-item label {
    font-size: 8px !important;
}

.rp-ticket-footer-row {
    padding: 5px !important;
}

.rp-gold-text {
    font-size: 14px !important;
}

.rp-tf-item label {
    font-size: 8px !important;
}

.rp-ticket-line {
    margin: 5px 20px !important;
}

/* Colors */
.rp-premium-ticket * {
    color: #fff !important;
}

.rp-event-badge {
    background: #f1c40f !important;
    color: #000 !important;
    font-size: 8px !important;
    padding: 2px 5px !important;
}

#rp-ticket-total {
    color: #f1c40f !important;
}

/* Hide Controls */
.rp-premium-actions,
#rp-print-btn,
#rp-share-btn,
#rp-back-to-home,
.rp-success-header,
.rp-success-icon,
.rp-btn,
.noprint {
    display: none !important;
}


/* --- CONFIRMATION SCREEN REDESIGN 1.3.0 --- */

.rp-success-header-new {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.rp-main-heading {
    font-size: 28px;
    font-weight: 800;
    color: #f1c40f;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rp-sub-heading {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.rp-alert-box {
    background: rgba(230, 126, 34, 0.15);
    border: 1px solid rgba(230, 126, 34, 0.4);
    color: #e67e22;
    /* Orange highlight */
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
}

/* Info Grid Layout */
.rp-info-grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.rp-info-card-box {
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.2s;
}

.rp-info-card-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.rp-info-title {
    color: #f1c40f;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rp-btn-link-gold {
    display: inline-block;
    background: #f1c40f;
    color: #000 !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rp-btn-link-gold:hover {
    background: #d4ac0d;
    transform: translateY(-2px);
    color: #000 !important;
    text-decoration: none;
}

/* Footer Message */
.rp-footer-message p {
    margin: 0;
}

/* Mobile Tweaks */
@media (max-width: 600px) {
    .rp-main-heading {
        font-size: 24px;
    }

    .rp-sub-heading {
        font-size: 14px;
    }

    .rp-info-grid-section {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

/* TICKET INFO GRID (Restored with Fixes) */
.rp-ticket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* Increased gap */
    padding: 20px 5px;
    /* Better vertical padding */
    margin-bottom: 20px;
    border-bottom: 1px dashed #444;
}

.rp-grid-item {
    display: flex;
    flex-direction: column;
}

.rp-grid-item label {
    font-size: 10px;
    color: #888;
    margin-bottom: 5px;
    /* Increased spacing */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rp-grid-item span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Force Confirm Button Visibility Fix */
#rp-confirm-btn {
    display: block;
    /* Will be toggled by JS, but start as block-capable */
    min-width: 200px;
    z-index: 9999;
}

.rp-wizard-nav {
    display: flex !important;
    width: 100%;
    margin-top: 20px;
    padding-bottom: 20px;
}

/* FORCE WRAPPER VISIBILITY WHEN ACTIVE */
#rp-confirm-wrapper button {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* FORCE WRAPPER VISIBILITY OVERRIDE */
#rp-confirm-wrapper {
    display: none;
    /* Default state, toggled by JS */
    width: 100%;
    clear: both;
    margin-top: 25px;
    z-index: 10000;
    position: relative;
    text-align: right;
}

#rp-confirm-wrapper.force-show {
    display: block !important;
}

/* TICKET FONT SIZE RESTORATION */
.rp-grid-item span {
    font-size: 15px !important;
    font-weight: 600;
}

.rp-grid-item label {
    font-size: 11px !important;
    opacity: 0.8;
}

.rp-ticket-footer-row .rp-gold-text {
    font-size: 24px !important;
}

#rp-ticket-resp {
    font-size: 18px !important;
    font-weight: bold;
}

#rp-ticket-event-name {
    font-size: 20px !important;
}

/* PAYMENT RADIO CARDS */
.rp-payment-option-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 160px;
    /* Taller as requested */
}

.rp-payment-option-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f1c40f;
}

.rp-payment-option-card.selected {
    border: 2px solid #f1c40f !important;
    background: rgba(241, 196, 15, 0.1);
}

.rp-payment-option-card input[type='radio'] {
    margin-right: 15px;
    transform: scale(1.2);
}

.rp-option-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rp-option-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rp-option-text strong {
    color: #fff;
    font-size: 16px;
}

.rp-option-text small {
    color: #ccc;
    font-size: 12px;
}




/* ENSURE BUTTON VISIBILITY */


#rp-final-confirm-unified:disabled {
    background-color: #555 !important;
    border-color: #555 !important;
    cursor: not-allowed;
    opacity: 0.6 !important;
}


/* Force Visibility for Confirmation Button */
/* Force Visibility for Confirmation Button */
#rp-final-confirm-unified {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 10px;
}


/* GLOBAL BUTTON STYLING - PILL SHAPE */


.rp-btn.rp-btn-success:hover,
.rp-btn.rp-btn-next:hover,
#rp-confirm-btn:hover,
#rp-final-confirm-unified:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.5) !important;
    filter: brightness(1.1);
}

.rp-btn.rp-btn-success:disabled,
#rp-confirm-btn:disabled,
#rp-final-confirm-unified:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    filter: grayscale(0.5);
}

/* Secondary / Back Buttons - Outline Pill */




.rp-btn .dashicons {
    margin-left: 8px;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* LOADING OVERLAY */
.rp-map-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: var(--rp-radius);
    color: #fff;
}

.rp-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #f1c40f;
    border-radius: 50%;
    animation: rp-spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes rp-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* FORCE BUTTON STYLE FROM IMAGE */


#rp-confirm-btn:hover,
#rp-final-confirm-unified:hover,
.rp-btn.rp-btn-success:hover,
.rp-btn.rp-btn-next:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 25px rgba(241, 196, 15, 0.6) !important;
    background-color: #d4ac0d !important;
}

#rp-confirm-btn .dashicons,
#rp-final-confirm-unified .dashicons {
    font-size: 24px !important;
    width: 24px !important;
    height: 24px !important;
    margin-left: 10px !important;
    margin-top: 2px !important;
}


/* FORCE RESERVAR BUTTON TO MATCH CONFIRM BUTTON */





/* TICKET / CONFIRMATION CARD VISUAL IMPROVEMENTS */

.rp-confirmation-card {
    padding: 30px 40px !important;
    /* Increased Padding */
    max-width: 500px !important;
}

.rp-ticket-row,
.rp-ticket-detail-row {
    padding-left: 10px !important;
    /* Side breathing room */
    padding-right: 10px !important;
}

.rp-ticket-footer {
    padding: 20px 10px !important;
    /* More footer space */
    margin-top: 15px !important;
}

.rp-ticket-label {
    margin-bottom: 5px !important;
    /* Spacing between Label and Value */
}

/* Ensure data values are not touching edges */
.rp-ticket-val {
    margin-bottom: 15px !important;
}


/* CORRECT TICKET PADDING */
.rp-premium-ticket {
    padding: 40px !important;
    /* Force generous padding */
    box-sizing: border-box !important;
}

/* Ensure inner rows have space from edges */
.rp-ticket-row,
.rp-ticket-detail-row {
    margin-left: 10px !important;
    margin-right: 10px !important;
}


/* EDGE-TO-EDGE TICKET IMAGE ADJUSTMENT */
.rp-premium-ticket {
    padding: 0 !important;
    /* Remove container padding */
    overflow: hidden !important;
    /* Clip content to radius */
}

.rp-ticket-header-img {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    /* Reset radius since container clips */
    height: 250px !important;
    /* Ensure enough height for cover effect */
    background-size: cover !important;
    background-position: center !important;
}

/* Apply Padding to Content BELOW Image */
.rp-ticket-body-qr,
.rp-info-grid-section,
.rp-ticket-footer,
.rp-ticket-divider-perf {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.rp-ticket-body-qr {
    padding-top: 30px !important;
}

.rp-ticket-footer {
    padding-bottom: 40px !important;
    /* Bottom padding for card */
}


/* EQUAL SIZE BUTTONS IN STEP 2 */


/* Read More Button (Discrete) */
.rp-details-btn {
    background: transparent !important;
    border: 1px solid rgba(241, 196, 15, 0.5) !important;
    color: #f1c40f !important;
    font-size: 10px !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    line-height: normal;
}

.rp-details-btn:hover {
    border-color: #f1c40f !important;
    background: rgba(241, 196, 15, 0.1) !important;
    transform: translateY(-1px);
}

/* Modal Content Formatting */
#rp-modal-body {
    color: #ddd;
    line-height: 1.6;
    font-size: 14px;
    max-height: 60vh;
    /* Scrollable if too long */
    overflow-y: auto;
    padding-right: 10px;
    /* Space for scrollbar */
}

#rp-modal-body p {
    margin-bottom: 15px;
}

#rp-modal-body strong {
    color: #fff;
}

/* Scrollbar for modal body */
#rp-modal-body::-webkit-scrollbar {
    width: 6px;
}

#rp-modal-body::-webkit-scrollbar-track {
    background: #111;
}

#rp-modal-body::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

#rp-modal-body::-webkit-scrollbar-thumb:hover {
    background: #666;
}