.mascamp-card p.mascamp-redirect-message {
    text-align: center;
    font-size: 18px;
}

.mascamp-card p {
    margin-bottom: 0px !important;
}

.mascamp-stripe-onboarding-status-wrapper .mascamp-test-mode-banner {
    background: #fef9c3;
    border: 1px solid #fde047;
    color: #854d0e;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mascamp-stripe-onboarding-status-wrapper .mascamp-redirect-message {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 0.5rem;
    text-align: center;
}

.mascamp-stripe-onboarding-status-wrapper .mascamp-countdown-text {
    font-size: 0.95rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 0;
}

.mascamp-stripe-onboarding-status-wrapper .mascamp-redirect-note {
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 1rem;
}


/* =========================
   MasCamp Stripe Onboarding UI
   ========================= */

/* Container */
.mascamp-container {
    max-width: 100%;
    margin: 0;
}

/* Title */
.mascamp-title {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}


span.your-status {
    width: 160px;
    line-height: 50px;
}
.your-status-wrap {
    display: inline-flex;
}
/* Status pill */
.mascamp-status {
    display: inline-flex;
    align-items: center;
    background: #e5e7eb;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 16px;
    color: #6b7280;
    width: 95%;
    max-width: 230px;
}


.mascamp-status-wrap {
    display: contents;
}
.mascamp-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Card */

.mascamp-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    max-width: 450px;
    width: 100%;
    min-width: 400px;
    height: 600px;
    margin: auto;
}
/* =========================
   ROW LAYOUT
   ========================= */

.mascamp-row {
  /*  display: grid;
    grid-template-columns: 1fr auto;*/
    display: inline-flex;
    align-items: center;
    padding: 0px;
}

/* Label */
.mascamp-label {
        margin-right: 30px;
    font-weight: 600;
    color: #555;
}

/* Right values */
.mascamp-row > span:last-child {
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

/* =========================
   STATUS BADGE
   ========================= */

.mascamp-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Icon */
.mascamp-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

/* Colors */
.mascamp-true {
    background: #22c55e;
}

.mascamp-false {
    background: #dc2626;
}

/* Status text */
.mascamp-status-badge span:last-child {
    font-size: 14px;
    color: #111;
    font-weight: 500;
}

/* Divider */
.mascamp-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 28px 0;
}

/* =========================
   CTA BUTTON
   ========================= */

.mascamp-cta-wrap {
    text-align: center;
    margin-top: 24px;
}

.mascamp-cta {
    display: inline-flex;
    padding: 17px 40px 15px;
    background: linear-gradient(135deg, #000000, #000000);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.mascamp-cta:hover {
    background: linear-gradient(135deg, #5b4df7, #4f46e5)!important;
    color: #fff;
    opacity: 0.95;
}

.mascamp-cta-secondary {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
    font-size: 14px;
    padding: 12px 32px;
}

.mascamp-cta-secondary:hover {
    background: #f9fafb !important;
    color: #374151;
    opacity: 1;
}

/* =========================
   MOBILE (STACKED CLEAN)
   ========================= */

@media (max-width: 640px) {

    .mascamp-title {
        font-size: 26px;
    }

    .mascamp-card {
        padding: 20px;
    }

    .mascamp-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 0px;
    }

    .mascamp-row > span:last-child {
        text-align: left;
        justify-self: start;
    }

    .mascamp-status-badge {
        justify-content: flex-start;
    }

    .mascamp-label {
        font-size: 14px;
    }

    .mascamp-status-badge span:last-child {
        font-size: 14px;
    }

    .mascamp-cta {
        font-size: 14px;
        padding: 12px 20px;
    }
}