/* ═══════════════════════════════════════════════════
   PayBito — Admin Stylesheet
   ═══════════════════════════════════════════════════ */

:root {
    --bp-blue: #102ab3;
    --bp-blue-dark: #0b1f85;
    --bp-red: #ec4349;
    --bp-orange: #f5a623;
    --bp-green: #27ae60;
    --bp-bg: #f0f2f7;
    --bp-card-bg: #ffffff;
    --bp-border: #dde1ea;
    --bp-text: #1a1f36;
    --bp-muted: #6b7280;
    --bp-radius: 12px;
    --bp-shadow: 0 4px 24px rgba(16, 42, 179, 0.08);
}

/* ── Base ────────────────────────────────────────── */
.paybito-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

.paybito-wrap * {
    box-sizing: border-box;
}

/* ── Header ──────────────────────────────────────── */
.paybito-header {
    background: linear-gradient(135deg, var(--bp-blue) 0%, #1a3de8 100%);
    border-radius: var(--bp-radius);
    padding: 32px 40px;
    margin-bottom: 28px;
    color: #fff;
}

.paybito-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.paybito-logo-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.paybito-logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.paybito-tagline {
    font-size: 15px;
    opacity: 0.8;
    margin: 0;
}

/* ── Notice ──────────────────────────────────────── */
.paybito-notice.notice {
    border-left: 4px solid var(--bp-orange);
    padding: 14px 18px;
    border-radius: 0 var(--bp-radius) var(--bp-radius) 0;
}

/* ── Stats Grid ──────────────────────────────────── */
.paybito-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.paybito-stat-card {
    background: var(--bp-card-bg);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--bp-shadow);
    transition: transform .2s;
}

.paybito-stat-card:hover {
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 28px;
}

.stat-number {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: var(--bp-blue);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--bp-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── Quick Links ─────────────────────────────────── */
.paybito-quick-links {
    background: var(--bp-card-bg);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 24px;
    margin-bottom: 24px;
}

.paybito-quick-links h3 {
    margin: 0 0 16px;
    font-size: 16px;
    color: var(--bp-text);
}

/* ── Buttons ─────────────────────────────────────── */
.paybito-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bp-blue);
    color: #fff !important;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-right: 10px;
    margin-bottom: 8px;
}

.paybito-btn:hover {
    background: var(--bp-blue-dark);
    transform: translateY(-1px);
}

.paybito-btn.secondary {
    background: #fff;
    color: var(--bp-blue) !important;
    border: 2px solid var(--bp-blue);
}

.paybito-btn.secondary:hover {
    background: var(--bp-blue);
    color: #fff !important;
}

.paybito-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bp-blue);
    color: #fff !important;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    transition: background .2s;
}

.paybito-btn-primary:hover {
    background: var(--bp-blue-dark);
}

.paybito-btn-skip {
    background: transparent;
    color: var(--bp-muted);
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 12px 16px;
}

.paybito-btn-skip:hover {
    color: var(--bp-text);
}

/* ── Info Box ────────────────────────────────────── */
.paybito-info-box {
    background: #f0f4ff;
    border: 1px solid #c7d3f7;
    border-radius: var(--bp-radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.paybito-info-box h3 {
    margin: 0 0 10px;
    font-size: 15px;
    color: var(--bp-blue);
}

.paybito-info-box ul {
    margin: 8px 0 0 16px;
}

.paybito-info-box ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

/* ── Copy Box ────────────────────────────────────── */
.paybito-copy-box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.paybito-copy-box input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    font-family: monospace;
}

/* ── Logs Table ──────────────────────────────────── */
.paybito-logs-table {
    margin-top: 16px;
}

.paybito-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.paybito-status-completed {
    background: #d4f5e6;
    color: #1a7a4a;
}

.paybito-status-pending {
    background: #fff4d4;
    color: #8a6200;
}

.paybito-status-failed {
    background: #ffe4e4;
    color: #c0392b;
}

/* ── Thank You Box ───────────────────────────────── */
.paybito-thankyou-notice {
    background: #f0f4ff;
    border-left: 4px solid var(--bp-blue);
    padding: 20px 24px;
    border-radius: 0 var(--bp-radius) var(--bp-radius) 0;
    margin: 20px 0;
}

/* ════════════════════════════════════════════════════
   Opt-in Modal
   ════════════════════════════════════════════════════ */
.paybito-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paybito-modal {
    background: #fff;
    border-radius: 18px;
    padding: 40px 44px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    animation: bpSlideUp .35s ease;
}

@keyframes bpSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.paybito-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bp-blue), #1a3de8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 20px;
}

.paybito-modal h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 14px;
}

.paybito-modal p {
    font-size: 14px;
    color: var(--bp-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.paybito-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.paybito-modal-footer {
    font-size: 12px;
    color: var(--bp-muted);
    margin-top: 16px;
}

/* ════════════════════════════════════════════════════
   Setup Wizard
   ═════════════════════════════════════════════════╗ */
.paybito-wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 0;
}

.paybito-wizard-step {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e0e4f0;
    color: var(--bp-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    transition: all .25s;
}

.paybito-wizard-step.active .step-circle {
    background: var(--bp-blue);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(16, 42, 179, 0.2);
}

.paybito-wizard-step.done .step-circle {
    background: var(--bp-green);
    color: #fff;
}

.step-label {
    font-size: 11px;
    color: var(--bp-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.paybito-wizard-step.active .step-label {
    color: var(--bp-blue);
    font-weight: 700;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: #dde1ea;
    margin: 0 4px 16px;
}

.paybito-wizard-card {
    background: var(--bp-card-bg);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 48px;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--bp-shadow);
}

.paybito-wizard-icon {
    width: 72px;
    height: 72px;
    /* background: linear-gradient(135deg, var(--bp-blue), #1a3de8); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 24px;
    border: 1px solid var(--bp-border);
}

.paybito-wizard-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 12px;
}

.paybito-wizard-card p {
    color: var(--bp-muted);
    font-size: 15px;
    line-height: 1.6;
}

.paybito-wizard-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.paybito-wizard-checklist {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left;
}

.paybito-wizard-checklist li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--bp-border);
}

.paybito-wizard-checklist li:last-child {
    border-bottom: none;
}

/* ── Field Groups ────────────────────────────────── */
.paybito-field-group {
    text-align: left;
    margin-bottom: 20px;
}

.paybito-field-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-text);
    margin-bottom: 8px;
}

.paybito-field-group label .required {
    color: var(--bp-red);
}

.paybito-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--bp-border);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.paybito-input:focus {
    border-color: var(--bp-blue);
    box-shadow: 0 0 0 3px rgba(16, 42, 179, 0.12);
}

.paybito-field-hint {
    font-size: 12px;
    color: var(--bp-muted);
    margin-top: 6px;
    display: block;
}

/* ── Coin Selector Grid ──────────────────────────── */
.paybito-coin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
    margin: 20px 0;
}

.paybito-coin-card {
    border: 2px solid var(--bp-border);
    border-radius: 12px;
    padding: 18px 12px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.paybito-coin-card:hover {
    border-color: var(--bp-blue);
    background: #f0f4ff;
}

.paybito-coin-card.selected {
    border-color: var(--bp-blue);
    background: #e9eeff;
}

.coin-emoji {
    font-size: 26px;
}

.coin-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--bp-text);
}

.coin-symbol {
    font-size: 11px;
    color: var(--bp-muted);
}


/* Footer and open model css */
.bp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

.bp-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 95%;
    background: #0d0d0d;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    z-index: 9999;
}

/* HEADER */
.bp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 20px;
    border-bottom: 1px solid #222;
}

.bp-icon {
    background: #1e293b;
    padding: 8px 12px;
    border-radius: 8px;
}

/* BODY */
.bp-body {
    padding: 20px;
}

.bp-body label {
    font-size: 12px;
    color: #aaa;
}

.bp-body input {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
}

.bp-row {
    display: flex;
    gap: 15px;
}

.bp-row>div {
    flex: 1;
}

.bp-body small {
    color: #777;
    font-size: 11px;
}

/* TOGGLE */
.bp-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #222;
    border-radius: 10px;
}

/* SWITCH */
.switch {
    position: relative;
    width: 40px;
    height: 20px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #444;
    border-radius: 20px;
}

.slider:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    top: 2px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked+.slider {
    background: #22c55e;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

/* FOOTER */
.bp-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #222;
}

/* BUTTON */
.bp-btn {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.bp-btn.primary {
    background: #2563eb;
    color: #fff;
}

.bp-btn.secondary {
    background: #222;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:600px) {
    .bp-row {
        flex-direction: column;
    }
}

/* MODAL */
.bp-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    max-width: 95%;
    background: #0d0d0d;
    color: #fff;
    border-radius: 14px;
    overflow: hidden;
    z-index: 9999;
}

/* HEADER */
.bp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 20px;
    border-bottom: 1px solid #1f1f1f;
}

.bp-icon {
    background: #1e293b;
    padding: 8px 12px;
    border-radius: 8px;
}

/* BODY */
.bp-body {
    padding: 20px;
}

.bp-body label {
    font-size: 12px;
    color: #aaa;
}

.bp-body input {
    width: 100%;
    padding: 5px;
    margin-top: 6px;
    margin-bottom: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
}

/* RULE HEADER */
.bp-rule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* RULE BOX */
.bp-rule {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #111;
    border: 1px solid #222;
}

/* NUMBER BADGE */
.bp-rule-index {
    background: #0f172a;
    padding: 6px 10px;
    border-radius: 6px;
}

/* INPUT INLINE */
.bp-rule input {
    width: 120px;
}

/* REMOVE BTN */
.bp-remove {
    background: #1d4ed8;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}

/* TOGGLE */
.bp-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #222;
    border-radius: 10px;
}

/* SWITCH */
.switch {
    position: relative;
    width: 40px;
    height: 20px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #444;
    border-radius: 20px;
}

.slider:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    top: 2px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked+.slider {
    background: #22c55e;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

/* FOOTER */
.bp-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #222;
}

/* BUTTON */
.bp-btn {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.bp-btn.primary {
    background: #2563eb;
    color: #fff;
}

.bp-btn.secondary {
    background: #222;
    color: #fff;
}

.bp-btn.small {
    padding: 6px 12px;
}

/* RESPONSIVE */
@media(max-width:600px) {

    .bp-rule {
        flex-direction: column;
        align-items: flex-start;
    }

    .bp-rule input {
        width: 100%;
    }

}

#bp-discount-list {
    width: 60%;
}

.bp-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bp-card {
    background: #0d0d0d;
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    padding: 10px;
    color: #fff;
    margin-bottom: 10px;
}

.bp-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.bp-head h3 {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

.bp-default {
    border: 1px solid #ffa500;
    border-radius: 30px;
    padding: 3px 10px;
}

.bp-head button {
    margin-left: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: #2563eb;
    color: #fff;
}

.bp-rule-line {
    background: #111;
    border: 1px solid #222;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    color: #22c55e;
}


/* ===== MODAL WRAPPER ===== */
#bp_edit_modal {
    position: fixed;
    inset: 0;
    /* shorthand for top, left, right, bottom = 0 */
    display: none;

    align-items: center;
    justify-content: center;

    z-index: 999999;
}

/* when active */
#bp_edit_modal.active {
    display: flex;
}


/* ===== OVERLAY ===== */
#bp_edit_modal .bp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: auto;
}


/* ===== MODAL BOX ===== */
#bp_edit_modal .bp-box {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 600px;

    background: #0b1320;
    color: #fff;

    border-radius: 12px;
    padding: 25px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);

    animation: bpFadeIn 0.25s ease;
}


/* ===== ANIMATION ===== */
@keyframes bpFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.bp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bp-header h2 {
    font-size: 18px;
    margin: 0;
}

.bp-icon {
    background: #1e293b;
    padding: 8px 10px;
    border-radius: 8px;
}


.bp-field {
    margin-bottom: 15px;
}

.bp-field label {
    font-size: 12px;
    color: #94a3b8;
    display: block;
    margin-bottom: 5px;
}

.bp-field input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #334155;
    background: #020617;
    color: #fff;
    outline: none;
}

.bp-field small {
    font-size: 11px;
    color: #64748b;
}


.bp-row {
    display: flex;
    gap: 15px;
}

.bp-row .bp-field {
    flex: 1;
}


.bp-toggle-box {
    display: flex;
    gap: 15px;
    background: #020617;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    align-items: center;
}

.bp-toggle-box p {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
}


.switch {
    position: relative;
    width: 42px;
    height: 22px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    background: #334155;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.slider:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.switch input:checked+.slider {
    background: #3b82f6;
}

.switch input:checked+.slider:before {
    transform: translateX(20px);
}


.bp-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.bp-footer button {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

/* Cancel Button */
.bp_edit_close {
    background: #1e293b;
    color: #fff;
}

/* Primary Button */
.primary-btn {
    background: #3b82f6;
    color: #fff;
}


@keyframes bpFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .bp-row {
        flex-direction: column;
    }

    .bp-box {
        padding: 20px;
    }
}

.bp-payment-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.bp-header h2 {
    margin: 0;
    font-size: 28px;
    color: #111827;
}

.bp-subtitle {
    margin: 10px 0 10px;
    font-size: 16px;
    color: #6b7280;
}

.bp-btn {
    display: inline-block;
    background: #2271b1;
    color: #fff;
    padding: 7px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.bp-btn:hover {
    background: #111827;
    color: #fff;
}

.bp-image-wrap {
    margin-top: 25px;
    text-align: center;
}

.bp-image {
    max-width: 100%;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

@media(max-width:768px) {
    .bp-header h2 {
        font-size: 24px;
    }
}

/****************Sucess Page Start******************/
.success-wrapper {
    background: #f4f7fb;
    padding: 30px 20px;
    min-height: 100vh;
}

.success-box {
    max-width: 650px;
    margin: auto;
    background: #ffffff;
    border-radius: 22px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
}

.checkmark-circle {
    width: 40px;
    height: 40px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #4cd964);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.25);
}

.checkmark {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.success-box h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #111827;
}

.subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 35px;
}

.details {
    background: #f9fafb;
    border: 1px solid #eef1f5;
    border-radius: 16px;
    padding: 10px 25px;
    text-align: left;
    margin-bottom: 35px;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #eceff3;
    /* font-size:17px; */
}

.row:last-child {
    border-bottom: none;
}

.row span {
    color: #6b7280;
}

.row strong {
    color: #111827;
}

.success-status {
    color: #28a745 !important;
    text-transform: capitalize;
}

.home-btn {
    display: inline-block;
    background: #111827;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.home-btn:hover {
    background: #28a745;
    transform: translateY(-2px);
}

@media(max-width:768px) {
    .success-box {
        padding: 35px 20px;
    }

    .success-box h1 {
        font-size: 28px;
    }

    .row {
        flex-direction: column;
        gap: 8px;
    }
}
/********************Sucess Page End******************************/