/* =========================================================
   EQPAY SCHOLARSHIP DASHBOARD - DISPLAY UPDATE
   Scope: front-end shortcode [eqpay_scholarships]
   Changes: display/layout only; no payout or certificate logic.
========================================================= */

.eqpay-dashboard,
.eqpay-dashboard * {
    box-sizing: border-box;
}

.eqpay-dashboard {
    width: min(100%, 1500px);
    margin: 0 auto;
    padding: 0 14px 30px;
    color: #061338;
    font-family: Manrope, Arial, sans-serif;
    line-height: 1.35;
}

/* Wider content area for block themes */
.wp-site-blocks .eqpay-dashboard,
.wp-block-post-content .eqpay-dashboard,
.entry-content .eqpay-dashboard {
    max-width: 1500px !important;
}

.eqpay-dashboard-hero {
    text-align: center;
    margin: 8px 0 24px;
}

.eqpay-dashboard-hero h2 {
    margin: 0 0 8px;
    color: #061338;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.eqpay-dashboard-hero p {
    margin: 0;
    color: #172241;
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 400;
}

/* =========================================================
   SUMMARY CARDS
========================================================= */

.eqpay-dashboard .dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(210px, 1fr));
    gap: 16px;
    margin: 20px 0 18px;
}

.eqpay-dashboard .stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 126px;
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #dbe3f0;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(8, 33, 75, 0.08);
}

.eqpay-dashboard .stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
}

.eqpay-dashboard .stat-card--certificates .stat-icon {
    background: #fff4df;
    color: #f18a00;
}

.eqpay-dashboard .stat-card--pending .stat-icon {
    background: #fff1cf;
    color: #f5a600;
}

.eqpay-dashboard .stat-card--redeemed .stat-icon,
.eqpay-dashboard .stat-card--usd .stat-icon {
    background: #dff4e8;
    color: #0e9b4d;
}

.eqpay-dashboard .stat-content {
    min-width: 0;
}

.eqpay-dashboard .stat-label {
    margin-bottom: 6px;
    color: #061338;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.15;
}

.eqpay-dashboard .stat-value {
    color: #061338;
    font-size: clamp(26px, 2vw, 36px);
    font-weight: 800;
    line-height: 1.1;
    word-break: break-word;
}

.eqpay-dashboard .stat-card--redeemed .stat-value,
.eqpay-dashboard .stat-card--usd .stat-value {
    color: #057a3c;
}

/* =========================================================
   PANELS / WALLET / CERTIFICATES
========================================================= */

.eqpay-dashboard .wallet-box {
    margin: 18px 0;
    padding: 24px 26px;
    background: #ffffff;
    border: 1px solid #dbe3f0;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(8, 33, 75, 0.08);
}

.eqpay-dashboard .wallet-box h3 {
    margin: 0 0 18px !important;
    color: #061338;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.eqpay-dashboard .wallet-box h3::before {
    content: "▣";
    display: inline-block;
    margin-right: 10px;
    color: #0877e8;
    font-size: 0.85em;
    vertical-align: 0.03em;
}

.eqpay-dashboard .eqpay-certificates-section h3::before {
    content: "";
    margin-right: 0;
}

.eqpay-dashboard .eqpay-wallet-form {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 980px;
}

.eqpay-dashboard .eqpay-wallet-input,
.eqpay-dashboard input[type="text"].eqpay-wallet-input {
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0;
    max-width: 100%;
    height: 46px;
    padding: 10px 14px;
    color: #061338;
    font-size: 15px;
    font-weight: 700;
    background: #f9fbff;
    border: 1px solid #cfd9ea;
    border-radius: 6px;
}

.eqpay-dashboard .description {
    margin: 14px 0 0;
    color: #172241;
    font-size: 14px;
    line-height: 1.55;
}

.eqpay-dashboard .eqpay-wallet-save-notice,
.eqpay-dashboard .eqpay-redeem-notice {
    padding: 12px 14px;
    margin: 0 0 16px;
    border-radius: 8px;
    font-size: 14px;
}

.eqpay-dashboard .eqpay-wallet-save-notice p,
.eqpay-dashboard .eqpay-redeem-notice p {
    margin: 0;
}

.eqpay-dashboard .eqpay-wallet-save-notice--success {
    border-left: 4px solid #00a32a;
    background: #edfaef;
    color: #1e4620;
}

.eqpay-dashboard .eqpay-wallet-save-notice--error,
.eqpay-dashboard .eqpay-redeem-notice--error {
    border-left: 4px solid #d63638;
    background: #fcf0f1;
    color: #3c434a;
}

/* =========================================================
   TABLE
========================================================= */

.eqpay-dashboard .eqpay-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.eqpay-dashboard table.eqpay-certificates-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #dbe3f0;
    border-radius: 10px;
    overflow: hidden;
}

.eqpay-dashboard table.eqpay-certificates-table th {
    padding: 16px 14px;
    color: #061338;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    background: #f5f7fb;
    border: 1px solid #dbe3f0;
    white-space: nowrap;
}

.eqpay-dashboard table.eqpay-certificates-table td {
    padding: 18px 14px;
    color: #061338;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    background: #ffffff;
    border: 1px solid #dbe3f0;
}

.eqpay-dashboard table.eqpay-certificates-table td:first-child strong {
    color: #0666cc;
    font-weight: 800;
}

.eqpay-dashboard table.eqpay-certificates-table tr:hover td {
    background: #fbfdff;
}

/* =========================================================
   BUTTONS
========================================================= */

.eqpay-dashboard button,
.eqpay-dashboard .button,
.eqpay-dashboard input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    background: #066fd1;
    border: 0;
    border-radius: 7px;
    box-shadow: 0 6px 14px rgba(0, 91, 190, 0.18);
    transition: background 0.2s ease, transform 0.2s ease;
}

.eqpay-dashboard button:hover,
.eqpay-dashboard .button:hover,
.eqpay-dashboard input[type="submit"]:hover {
    color: #ffffff;
    background: #055cb0;
    transform: translateY(-1px);
}

.eqpay-dashboard button:disabled,
.eqpay-dashboard .button:disabled,
.eqpay-dashboard .eqpay-disabled-button {
    color: #5c667a !important;
    cursor: not-allowed;
    background: #d8deea !important;
    box-shadow: none;
    transform: none;
}

.eqpay-dashboard .eqpay-disabled-button--locked {
    color: #8b3a3a !important;
    background: #f2dede !important;
    border: 1px solid #e4bcbc !important;
}

.eqpay-dashboard .eqpay-pending-button,
.eqpay-dashboard .eqpay-pending-button:disabled {
    color: #8a6a00 !important;
    cursor: not-allowed;
    background: #f5e7b2 !important;
    border: 1px solid #e5ce76 !important;
    box-shadow: none;
    transform: none;
}

.eqpay-dashboard .eqpay-transaction-button {
    color: #ffffff !important;
    background: #0f8f4d !important;
    box-shadow: 0 6px 14px rgba(15, 143, 77, 0.18);
}

.eqpay-dashboard .eqpay-transaction-button:hover,
.eqpay-dashboard .eqpay-transaction-button:focus {
    color: #ffffff !important;
    background: #0b723d !important;
}

.eqpay-dashboard .eqpay-tx-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    color: #066fd1;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
}

.eqpay-dashboard .eqpay-no-transaction {
    color: #7a8496;
    font-weight: 700;
}

.eqpay-dashboard .eqpay-transaction-help {
    text-align: center;
}

.eqpay-dashboard .eqpay-redeem-form {
    margin: 0;
}

.eqpay-dashboard .eqpay-inline-help {
    max-width: 280px;
    margin: 8px auto 0;
    font-size: 12px;
}

/* =========================================================
   DYNAMIC STATUS BADGES IN TABLE
========================================================= */

.eqpay-dashboard .eqpay-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 110px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
    border-radius: 999px;
    white-space: nowrap;
}

.eqpay-dashboard .eqpay-status-icon {
    font-weight: 900;
}

.eqpay-status-badge--inactive { background: #0b6fe8; color: #ffffff; }
.eqpay-status-badge--active { background: #dff3e7; color: #086c35; }
.eqpay-status-badge--bonus { background: #dfe9ff; color: #164db5; }
.eqpay-status-badge--auto { background: #f5e4be; color: #7b5200; }
.eqpay-status-badge--pending { background: #fff3cc; color: #8c6500; }
.eqpay-status-badge--redeemed { background: #dff3e7; color: #086c35; }
.eqpay-status-badge--voided { background: #fde2e2; color: #9b1c1c; }

/* Backward compatibility if older eqpay-status spans appear elsewhere */
.eqpay-dashboard .eqpay-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 999px;
}

.eqpay-dashboard .eqpay-active { background: #dff3e7; color: #086c35; }
.eqpay-dashboard .eqpay-bonus { background: #dfe9ff; color: #164db5; }
.eqpay-dashboard .eqpay-inactive { background: #0b6fe8; color: #ffffff; }
.eqpay-dashboard .eqpay-redeemed { background: #dff3e7; color: #086c35; }
.eqpay-dashboard .eqpay-autopay { background: #f5e4be; color: #7b5200; }
.eqpay-dashboard .eqpay-pending { background: #fff3cc; color: #8c6500; }
.eqpay-dashboard .eqpay-error { background: #fde2e2; color: #9b1c1c; }

/* =========================================================
   CERTIFICATE STATUS GUIDE
========================================================= */

.eqpay-dashboard .eqpay-status-guide {
    margin: 28px 0 0;
    padding: 0;
}

.eqpay-dashboard .eqpay-status-guide h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: #061338;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.eqpay-dashboard .eqpay-status-guide h3::before {
    content: "⚑";
    color: #e88a00;
    font-size: 0.95em;
}

.eqpay-dashboard .eqpay-status-guide h3::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dbe3f0;
}

.eqpay-dashboard .eqpay-status-guide-items {
    display: grid;
    grid-template-columns: repeat(6, minmax(135px, 1fr));
    gap: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dbe3f0;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(8, 33, 75, 0.08);
}

.eqpay-dashboard .status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 190px;
    padding: 22px 14px 20px;
    text-align: center;
    border-right: 1px solid #e4e9f2;
}

.eqpay-dashboard .status-item:last-child {
    border-right: none;
}

.eqpay-dashboard .status-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 14px;
    font-size: 35px;
    font-weight: 900;
    line-height: 1;
    border-radius: 50%;
}

.eqpay-dashboard .status-item .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    margin: 0 0 12px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    border-radius: 6px;
    white-space: nowrap;
}

.eqpay-dashboard .status-item .desc {
    display: block;
    max-width: 170px;
    color: #061338;
    font-size: 14px;
    line-height: 1.55;
}

.eqpay-dashboard .status-item.inactive .status-icon-large { background: #e7f0ff; color: #0b6fe8; }
.eqpay-dashboard .status-item.active .status-icon-large { background: #e4f6f4; color: #087f89; }
.eqpay-dashboard .status-item.bonus .status-icon-large { background: #e7f0ff; color: #0b6fe8; }
.eqpay-dashboard .status-item.auto .status-icon-large { background: #fff0d3; color: #e19a00; }
.eqpay-dashboard .status-item.pending .status-icon-large { background: #fff3d7; color: #9a6a00; }
.eqpay-dashboard .status-item.redeemed .status-icon-large { background: #dff3e7; color: #078944; }

.eqpay-dashboard .status-item.inactive .badge { background: #0b6fe8; color: #ffffff; }
.eqpay-dashboard .status-item.active .badge { background: #087f89; color: #ffffff; }
.eqpay-dashboard .status-item.bonus .badge { background: #dfe9ff; color: #164db5; }
.eqpay-dashboard .status-item.auto .badge { background: #f5e4be; color: #7b5200; }
.eqpay-dashboard .status-item.pending .badge { background: #fff3cc; color: #8c6500; }
.eqpay-dashboard .status-item.redeemed .badge { background: #dff3e7; color: #086c35; }

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {
    .eqpay-dashboard .dashboard-stats {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .eqpay-dashboard .eqpay-status-guide-items {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
    }

    .eqpay-dashboard .status-item {
        border-right: 1px solid #e4e9f2;
        border-bottom: 1px solid #e4e9f2;
    }

    .eqpay-dashboard .status-item:nth-child(3n) {
        border-right: none;
    }

    .eqpay-dashboard .status-item:nth-last-child(-n+3) {
        border-bottom: none;
    }
}

/* =========================================================
   MOBILE GENERAL
========================================================= */

@media (max-width: 768px) {
    .eqpay-dashboard {
        padding: 0 8px 24px;
    }

    .eqpay-dashboard-hero {
        margin: 6px 0 18px;
    }

    .eqpay-dashboard-hero h2 {
        font-size: 24px;
    }

    .eqpay-dashboard-hero p {
        font-size: 15px;
    }

    .eqpay-dashboard .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 16px 0;
    }

    .eqpay-dashboard .stat-card {
        min-height: auto;
        padding: 14px 16px;
    }

    .eqpay-dashboard .stat-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .eqpay-dashboard .stat-label {
        font-size: 14px;
    }

    .eqpay-dashboard .stat-value {
        font-size: 22px;
    }

    .eqpay-dashboard .wallet-box {
        padding: 16px;
        margin: 14px 0;
    }

    .eqpay-dashboard .wallet-box h3 {
        font-size: 20px;
    }

    .eqpay-dashboard .eqpay-wallet-form {
        display: block;
    }

    .eqpay-dashboard .eqpay-wallet-input,
    .eqpay-dashboard input[type="text"].eqpay-wallet-input {
        display: block;
        width: 100% !important;
        margin: 0 0 10px;
        font-size: 13px;
    }

    .eqpay-dashboard button,
    .eqpay-dashboard .button,
    .eqpay-dashboard input[type="submit"] {
        width: 100%;
        min-height: 42px;
    }

    .eqpay-dashboard .description {
        font-size: 12px;
    }
}

/* =========================================================
   MOBILE TABLE CARDS
========================================================= */

@media (max-width: 768px) {
    .eqpay-dashboard .eqpay-table-wrap {
        overflow-x: visible;
    }

    .eqpay-dashboard table.eqpay-certificates-table,
    .eqpay-dashboard table.eqpay-certificates-table thead,
    .eqpay-dashboard table.eqpay-certificates-table tbody,
    .eqpay-dashboard table.eqpay-certificates-table tr,
    .eqpay-dashboard table.eqpay-certificates-table td {
        display: block;
        width: 100%;
    }

    .eqpay-dashboard table.eqpay-certificates-table {
        border: none;
        background: transparent;
    }

    .eqpay-dashboard table.eqpay-certificates-table thead {
        display: none;
    }

    .eqpay-dashboard table.eqpay-certificates-table tr {
        margin: 0 0 14px;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid #dbe3f0;
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(8, 33, 75, 0.06);
    }

    .eqpay-dashboard table.eqpay-certificates-table td {
        display: grid;
        grid-template-columns: 42% 58%;
        gap: 10px;
        align-items: center;
        padding: 12px 14px;
        font-size: 13px;
        text-align: right;
        border: none;
        border-bottom: 1px solid #e8edf5;
        word-break: break-word;
    }

    .eqpay-dashboard table.eqpay-certificates-table td:last-child {
        display: block;
        text-align: center;
        border-bottom: none;
    }

    .eqpay-dashboard table.eqpay-certificates-table td::before {
        content: attr(data-label);
        color: #061338;
        font-weight: 800;
        text-align: left;
    }

    .eqpay-dashboard table.eqpay-certificates-table td:last-child::before {
        display: block;
        margin-bottom: 8px;
        text-align: center;
    }

    .eqpay-dashboard .eqpay-status-badge {
        min-width: 0;
    }
}

/* =========================================================
   MOBILE STATUS GUIDE
========================================================= */

@media (max-width: 768px) {
    .eqpay-dashboard .eqpay-status-guide h3 {
        font-size: 20px;
    }

    .eqpay-dashboard .eqpay-status-guide-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .eqpay-dashboard .status-item,
    .eqpay-dashboard .status-item:nth-child(3n),
    .eqpay-dashboard .status-item:nth-last-child(-n+3) {
        min-height: auto;
        padding: 14px 8px;
        background: #ffffff;
        border: 1px solid #dbe3f0;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(8, 33, 75, 0.05);
    }

    .eqpay-dashboard .status-icon-large {
        width: 54px;
        height: 54px;
        margin-bottom: 9px;
        font-size: 25px;
    }

    .eqpay-dashboard .status-item .badge {
        min-width: 0;
        max-width: 150px;
        width: 100%;
        padding: 6px 7px;
        font-size: 11px;
    }

    .eqpay-dashboard .status-item .desc {
        max-width: 150px;
        font-size: 11px;
        line-height: 1.42;
    }
}

@media (max-width: 480px) {
    .eqpay-dashboard .eqpay-status-guide-items {
        grid-template-columns: 1fr;
    }

    .eqpay-dashboard table.eqpay-certificates-table td {
        grid-template-columns: 1fr;
        gap: 4px;
        text-align: left;
    }

    .eqpay-dashboard table.eqpay-certificates-table td:last-child {
        text-align: left;
    }

    .eqpay-dashboard table.eqpay-certificates-table td:last-child::before {
        text-align: left;
    }
}

/* =========================================================
   WALLET PROTECTION PASSCODE - CLEAN UPDATE
   Keeps wallet protection inside the existing payout wallet panel.
========================================================= */

.eqpay-dashboard .eqpay-wallet-protection-section {
    position: relative;
}

.eqpay-dashboard .eqpay-wallet-simple-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 16px;
    align-items: stretch;
}

.eqpay-dashboard .eqpay-wallet-main-panel,
.eqpay-dashboard .eqpay-wallet-protection-card {
    min-width: 0;
}

.eqpay-dashboard .eqpay-wallet-protection-form,
.eqpay-dashboard .eqpay-wallet-passcode-change-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    align-items: end;
    max-width: none;
}

.eqpay-dashboard .eqpay-wallet-field {
    display: block;
    min-width: 0;
}

.eqpay-dashboard .eqpay-wallet-field span {
    display: block;
    margin: 0 0 7px;
    color: #061338;
    font-size: 13px;
    font-weight: 800;
}

.eqpay-dashboard input[type="password"].eqpay-wallet-input,
.eqpay-dashboard input[readonly].eqpay-wallet-input {
    flex: 1 1 auto;
    width: 100% !important;
    min-width: 0;
    max-width: 100%;
    height: 46px;
    padding: 10px 14px;
    color: #061338;
    font-size: 15px;
    font-weight: 700;
    background: #f9fbff;
    border: 1px solid #cfd9ea;
    border-radius: 6px;
}

.eqpay-dashboard input[readonly].eqpay-wallet-input {
    background: #f2f6fc;
    cursor: default;
}

.eqpay-dashboard .eqpay-wallet-protection-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    background: #fffaf0;
    border: 1px solid #ead29b;
    border-radius: 12px;
}

.eqpay-dashboard .eqpay-security-shield {
    flex: 0 0 76px;
    width: 76px;
    height: auto;
    object-fit: contain;
}

.eqpay-dashboard .eqpay-wallet-protection-copy {
    min-width: 0;
}

.eqpay-dashboard .eqpay-wallet-protection-title {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}

.eqpay-dashboard .eqpay-wallet-protection-title strong {
    color: #061338;
    font-size: 18px;
    font-weight: 900;
}

.eqpay-dashboard .eqpay-wallet-protection-copy p {
    margin: 0;
    color: #172241;
    font-size: 14px;
    line-height: 1.5;
}

.eqpay-dashboard .eqpay-wallet-protected-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 999px;
}

.eqpay-dashboard .eqpay-wallet-protected-pill.is-enabled {
    color: #087235;
    background: #dff3e7;
}

.eqpay-dashboard .eqpay-wallet-protected-pill.is-disabled {
    color: #8a6a00;
    background: #fff3cc;
}

.eqpay-dashboard .eqpay-wallet-meta {
    margin: 8px 0 0;
    color: #526079;
    font-size: 12px;
    font-weight: 600;
}

.eqpay-dashboard .eqpay-change-passcode-details {
    margin-top: 14px;
    padding: 12px 14px;
    background: #f7faff;
    border: 1px solid #dbe3f0;
    border-radius: 10px;
}

.eqpay-dashboard .eqpay-change-passcode-details summary {
    color: #0666cc;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.eqpay-dashboard .eqpay-wallet-passcode-change-form {
    margin-top: 14px;
    grid-template-columns: repeat(3, minmax(150px, 1fr)) auto;
}

.eqpay-dashboard .eqpay-secondary-button {
    color: #0666cc !important;
    background: #ffffff !important;
    border: 1px solid #8bb8f3 !important;
    box-shadow: none !important;
}

.eqpay-dashboard .eqpay-secondary-button:hover,
.eqpay-dashboard .eqpay-secondary-button:focus {
    color: #ffffff !important;
    background: #0666cc !important;
}

@media (max-width: 1180px) {
    .eqpay-dashboard .eqpay-wallet-simple-grid {
        grid-template-columns: 1fr;
    }

    .eqpay-dashboard .eqpay-wallet-protection-form,
    .eqpay-dashboard .eqpay-wallet-passcode-change-form {
        grid-template-columns: 1fr 1fr;
    }

    .eqpay-dashboard .eqpay-wallet-protection-form .eqpay-primary-button,
    .eqpay-dashboard .eqpay-wallet-passcode-change-form .eqpay-secondary-button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .eqpay-dashboard .eqpay-wallet-protection-form,
    .eqpay-dashboard .eqpay-wallet-passcode-change-form {
        display: block;
    }

    .eqpay-dashboard .eqpay-wallet-field {
        margin-bottom: 10px;
    }

    .eqpay-dashboard input[type="password"].eqpay-wallet-input,
    .eqpay-dashboard input[readonly].eqpay-wallet-input {
        display: block;
        width: 100% !important;
        margin: 0;
        font-size: 13px;
    }

    .eqpay-dashboard .eqpay-wallet-protection-card {
        align-items: flex-start;
        padding: 14px;
    }

    .eqpay-dashboard .eqpay-security-shield {
        flex-basis: 58px;
        width: 58px;
    }

    .eqpay-dashboard .eqpay-wallet-protection-title strong {
        font-size: 16px;
    }
}
