* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7fb;
    color: #111827;
    min-height: 100vh;
}

/* HEADER */
.app-header {
    height: 76px;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
    border-bottom: 1px solid #f0f0f5;
    box-shadow: 0 2px 12px rgba(17, 24, 39, 0.04);
    position: relative;
    z-index: 10;
}

.app-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
}

.header-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.header-title strong {
    font-size: 22px;
    font-weight: 750;
    letter-spacing: -0.4px;
    color: #111827;
}

.header-title span {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #9a9ca6;
    margin-top: 3px;
    text-transform: uppercase;
}

/* MAIN */
.app-content {
    padding: 38px 20px 100px;
    max-width: 700px;
    margin: auto;
}

/* WELCOME */
.welcome {
    margin-bottom: 24px;
}

.welcome h1 {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.6px;
    margin-bottom: 8px;
}

.welcome p {
    font-size: 15px;
    line-height: 1.55;
    color: #737887;
    max-width: 430px;
}

/* DASHBOARD CARD */
.dashboard-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.dashboard-card h2 {
    font-size: 25px;
    margin-bottom: 14px;
}

.dashboard-card p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* BUTTON */
.dashboard-card button {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 17px;
    background: #6d28d9;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.dashboard-card button:active {
    transform: scale(0.98);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px 20px;
    color: #8b8f99;
    font-size: 14px;
}

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

    .app-header {
        height: 72px;
        padding: 0 18px;
    }

    .app-logo {
        width: 46px;
        height: 46px;
    }

    .header-title strong {
        font-size: 21px;
    }

    .app-content {
        padding: 42px 18px 80px;
    }

    .welcome h1 {
        font-size: 32px;
    }

    .welcome p {
        font-size: 16px;
    }

    .dashboard-card {
        padding: 27px 20px;
    }
}
/* =========================
   DASHBOARD
========================= */

.dashboard {
    padding-bottom: 90px;
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.small-text {
    color: #6b7280;
    font-size: 14px;
}

.dashboard-top h1 {
    font-size: 27px;
    margin-top: 5px;
}

.notification {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

/* WALLET */

.balance-card {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 55%, #9333ea 100%);
    color: #ffffff;
    border-radius: 26px;
    padding: 26px 24px;
    margin-bottom: 28px;
    min-height: 170px;
    box-shadow: 0 14px 30px rgba(109, 40, 217, 0.22);
    position: relative;
    overflow: hidden;
}

.balance-card span {
    font-size: 14px;
    opacity: 0.85;
}

.balance-card h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 10px 0 22px;
    font-weight: 800;
}

.fund-btn {
    border: none;
    background: #ffffff;
    color: #6d28d9;
    padding: 13px 20px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.fund-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* SECTION TITLE */

.section-title {
    font-size: 20px;
    margin-bottom: 16px;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.service {
    background: #ffffff;
    border: 1px solid #f1eff6;
    border-radius: 20px;
    padding: 18px 10px 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: #f1eaff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 11px;
    font-size: 23px;
}

.service strong {
    display: block;
    font-size: 14px;
}

.service span {
    display: block;
    color: #8b8f99;
    font-size: 11px;
    margin-top: 4px;
}

/* TRANSACTIONS */

.recent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.recent-header h2 {
    font-size: 20px;
}

.recent-header span {
    color: #6d28d9;
    font-size: 13px;
    font-weight: 700;
}

.empty-transactions {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
}

.empty-transactions div {
    font-size: 35px;
    margin-bottom: 10px;
}

.empty-transactions h3 {
    font-size: 17px;
    margin-bottom: 7px;
}

.empty-transactions p {
    color: #8b8f99;
    font-size: 13px;
}

/* BOTTOM NAVIGATION */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    height: 72px;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #9ca3af;
    font-size: 21px;
}

.nav-item small {
    font-size: 11px;
}
/* ================================
   MODERN WAZIRIDATA DASHBOARD
================================ */

.dashboard {
    padding-bottom: 95px;
}

/* HEADER */

.dashboard-header {
  position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.greeting {
    color: #7b8190;
    font-size: 14px;
}

.dashboard-header h1 {
    font-size: 28px;
    margin-top: 5px;
    letter-spacing: -0.5px;
}

.notification-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
    font-size: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.12);
}

.notification-btn i {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6d28d9;
    border: 2px solid #ffffff;
}
/* NOTIFICATION PANEL */

.notification-panel {
    position: absolute;
    top: 60px;
    right: 0;
    width: 360px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 18px;
    box-sizing: border-box;
    z-index: 1000;
    display: none;
}

/* OPEN STATE */
.notification-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* HEADER */
.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 14px;
    border-bottom: 1px solid #eeeeee;
}

.notification-header strong {
    font-size: 18px;
    color: #111827;
}

.mark-read {
    border: none;
    background: transparent;
    color: #6d28d9;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* LIST */
.notification-list {
    max-height: 330px;
    overflow-y: auto;
}

/* EMPTY STATE */
.notification-empty {
    text-align: center;
    padding: 35px 20px;
}

.notification-empty-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: #f0eaff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.notification-empty strong {
    display: block;
    color: #111827;
    font-size: 15px;
    margin-bottom: 6px;
}

.notification-empty p {
    margin: 0;
    color: #8b8f99;
    font-size: 13px;
}

/* MOBILE */
@media (max-width: 450px) {
    .notification-panel {
        position: fixed;
        top: 88px;
        right: 16px;
        width: calc(100vw - 32px);
    }
}
/* BALANCE CARD */

.balance-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #5b21b6 0%,
        #6d28d9 50%,
        #7c3aed 100%
    );
    color: #ffffff;
    border-radius: 24px;
    padding: 25px;
    margin-bottom: 32px;
    box-shadow: 0 15px 35px rgba(109,40,217,0.22);
}

.balance-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    right: -70px;
    top: -80px;
}

.balance-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.balance-top span {
    font-size: 14px;
    opacity: 0.85;
}

.eye-btn {
    border: none;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    position: relative;
    z-index: 20;
    pointer-events: auto;
    cursor: pointer;
}

.balance-card h2 {
    font-size: 35px;
    margin: 12px 0 24px;
    letter-spacing: -1px;
}

.wallet-actions {
    display: flex;
    gap: 10px;
}

.primary-wallet-btn,
.secondary-wallet-btn {
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
}

.primary-wallet-btn {
    background: #ffffff;
    color: #6d28d9;
}

.secondary-wallet-btn {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
}

.primary-wallet-btn span {
    font-size: 16px;
}

/* SECTION HEADINGS */

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

.section-heading h2 {
    font-size: 20px;
    letter-spacing: -0.3px;
}

.section-heading button {
    border: none;
    background: transparent;
    color: #6d28d9;
    font-size: 13px;
    font-weight: 700;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-bottom: 31px;
}

.service {
    border: none;
    background: #ffffff;
    border-radius: 18px;
    padding: 15px 8px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.045);
    color: #111827;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 11px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.airtime-icon {
    background: #eee8ff;
}

.data-icon {
    background: #e8f3ff;
}

.electricity-icon {
    background: #fff4d8;
}

.cable-icon {
    background: #ffe9ee;
}

.education-icon {
    background: #e9f8ed;
}

.betting-icon {
    background: #eeeafd;
}

.service strong {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
}

.service span {
    display: block;
    color: #8b8f99;
    font-size: 10px;
}

/* TRANSACTIONS */

.transaction-heading {
    margin-top: 2px;
}

.empty-transactions {
    background: #ffffff;
    border: 1px solid #eeeef5;
    border-radius: 24px;
    padding: 36px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: #f0eaff;
    color: #6d28d9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(109, 40, 217, 0.10);
}

.empty-transactions h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.empty-transactions p {
    color: #8b8f99;
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* BOTTOM NAV */

.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    height: 80px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #eeeeee;
    box-shadow: 0 -8px 25px rgba(17, 24, 39, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 4px 8px;
    z-index: 100;
}

.nav-item {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #a0a5af;
    font-size: 20px;
    min-width: 65px;
    padding: 7px 10px;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.nav-item small {
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1px;
}

.nav-item.active {
    color: #6d28d9;
    font-weight: 700;
    transform: translateY(-1px);
}

.nav-item.active span {
    background: #f0eaff;
    width: 42px;
    height: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE */

@media (max-width: 450px) {

    .app-content {
        padding: 35px 16px 90px;
    }

    .dashboard-header h1 {
        font-size: 27px;
    }

    .balance-card {
        padding: 22px;
        border-radius: 22px;
    }

    .balance-card h2 {
        font-size: 32px;
    }

    .services-grid {
        gap: 9px;
    }

    .service {
        padding: 16px 5px;
    }

    .service-icon {
        width: 42px;
        height: 42px;
    }
}
.secondary-wallet-btn {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 13px 20px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.secondary-wallet-btn span {
    font-size: 17px;
}

.secondary-wallet-btn:hover {
    background: rgba(255, 255, 255, 0.20);
    transform: translateY(-1px);
}
.service strong {
    display: block;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #111827;
}

.service span {
    display: block;
    color: #8b8f99;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
}
/* NOTIFICATION PANEL */

.notification-panel {
    position: absolute;
    top: 60px;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 18px;
    z-index: 1000;
    display: none;
}

.notification-panel.show {
    display: block;
}

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

.notification-header strong {
    font-size: 18px;
    color: #111827;
}

.notification-header button {
    border: none;
    background: transparent;
    color: #6d28d9;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.notification-empty {
    text-align: center;
    padding: 25px 10px;
}

.notification-empty-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    border-radius: 16px;
    background: #f0eaff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.notification-empty strong {
    display: block;
    font-size: 16px;
    color: #111827;
    margin-bottom: 6px;
}

.notification-empty p {
    margin: 0;
    color: #8b8f99;
    font-size: 13px;
}
@media (max-width: 450px) {
    .notification-panel {
        top: 58px;
        right: -8px;
        width: 340px;
        max-width: calc(100vw - 24px);
        border-radius: 18px;
    }

    .notification-header {
        margin-bottom: 10px;
    }

    .notification-empty {
        padding: 22px 8px;
    }
}
/* ================================
   WAZIRIDATA NOTIFICATIONS
   ================================ */

.notification-panel {
    position: absolute;
    top: 70px;
    right: 0;
    width: 420px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.18);
    border: 1px solid #eeeeee;
    overflow: hidden;
    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.notification-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px 16px;
    border-bottom: 1px solid #eeeeee;
}

.notification-header strong {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.mark-read {
    border: none;
    background: transparent;
    color: #6d28d9;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 4px;
}

.notification-list {
    max-height: 360px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.notification-item:hover {
    background: #faf8ff;
}

.notification-item.unread {
    background: #fcfaff;
}

.notification-item-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    background: #f0eaff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.notification-item-content {
    flex: 1;
    min-width: 0;
}

.notification-item-content strong {
    display: block;
    margin-bottom: 5px;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}

.notification-item-content p {
    margin: 0 0 6px;
    color: #8b8f99;
    font-size: 13px;
    line-height: 1.5;
}

.notification-item-content small {
    color: #9ca3af;
    font-size: 11px;
}

.notification-empty {
    text-align: center;
    padding: 35px 20px;
}

.notification-empty-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: #f0eaff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.notification-empty strong {
    display: block;
    color: #111827;
    font-size: 15px;
    margin-bottom: 6px;
}

.notification-empty p {
    margin: 0;
    color: #8b8f99;
    font-size: 13px;
}

/* Mobile */
@media (max-width: 450px) {
    .notification-panel {
        position: fixed;
        top: 88px;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
        border-radius: 22px;
    }

    .notification-header {
        padding: 18px 18px 15px;
    }

    .notification-header strong {
        font-size: 18px;
    }

    .notification-item {
        padding: 16px 18px;
    }
}
.notification-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.close-notifications {
    border: none;
    background: #f3eaff;
    color: #6d28d9;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-notifications:active {
    transform: scale(0.95);
}
/* ================================
   RECENT TRANSACTIONS
================================ */

.recent-transactions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.transaction-item {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 82px;
    padding: 14px 16px;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.transaction-item:active {
    transform: scale(0.98);
}

.transaction-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-right: 14px;
}

.wallet-icon {
    background: #eee7ff;
}

.airtime-icon {
    background: #f0e9ff;
}

.data-icon {
    background: #e8f3ff;
}

.transaction-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.transaction-info strong {
    font-size: 16px;
    font-weight: 700;
    color: #151522;
}

.transaction-info small {
    font-size: 13px;
    color: #92929d;
}

.transaction-amount {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 10px;
}

.transaction-amount.success {
    color: #19a85b;
}

.transaction-amount.failed {
    color: #e53935;
}
/* ================================
   TRANSACTION DETAILS
================================ */

.transaction-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.transaction-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 30, 0.55);
    backdrop-filter: blur(4px);
}

.transaction-sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 28px 28px 0 0;
    padding: 28px 22px 30px;
    box-sizing: border-box;
    max-height: 88vh;
    overflow-y: auto;
    text-align: center;
}

.transaction-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f3f1f7;
    font-size: 25px;
    color: #55515f;
    cursor: pointer;
}

.transaction-detail-icon {
    width: 72px;
    height: 72px;
    margin: 8px auto 15px;
    border-radius: 22px;
    background: #eee7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.transaction-sheet h2 {
    margin: 0;
    font-size: 21px;
    color: #151522;
}

.transaction-detail-amount {
    margin-top: 12px;
    font-size: 32px;
    font-weight: 800;
}

.transaction-detail-amount.success {
    color: #19a85b;
}

.transaction-detail-amount.failed {
    color: #e53935;
}

.transaction-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 20px;
    background: #e9f8ef;
    color: #19a85b;
    font-size: 14px;
    font-weight: 700;
}

.transaction-status span {
    font-size: 16px;
}

.transaction-details {
    margin-top: 24px;
    padding: 4px 0;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeF3;
}

.detail-row span {
    color: #92929d;
    font-size: 14px;
}

.detail-row strong {
    color: #20202b;
    font-size: 14px;
    text-align: right;
    max-width: 55%;
}

.receipt-btn {
    width: 100%;
    margin-top: 22px;
    padding: 16px;
    border: none;
    border-radius: 15px;
    background: #7028e4;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
/* =========================
   SETTINGS SCREEN
   ========================= */

#settingsScreen {
    background: #f8f7fc;
    min-height: calc(100vh - 80px);
    padding: 0 20px 110px !important;
    box-sizing: border-box;
}

#settingsScreen > h3:first-of-type {
    margin-top: 0 !important;
}

#settingsScreen .section-heading h2 {
    font-size: 28px;
    margin: 0;
    color: #111827;
}

#settingsScreen h3 {
    font-size: 16px;
    color: #7c3aed;
    margin: 24px 4px 10px;
    font-weight: 700;
}

/* Settings rows */
#settingsScreen .settings-item {
    background: #ffffff;
    min-height: 62px;
    border-radius: 16px;
    margin-bottom: 10px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

#settingsScreen .settings-item span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #f1e9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

#settingsScreen .settings-item strong {
    font-size: 16px;
    color: #171717;
    font-weight: 600;
}

/* Arrow on settings rows */
#settingsScreen .settings-item::after {
    content: "›";
    margin-left: auto;
    font-size: 26px;
    color: #9ca3af;
}

/* Logout */
#settingsScreen .settings-item.logout {
    margin-top: 8px;
}

#settingsScreen .settings-item.logout strong {
    color: #dc2626;
}

#settingsScreen .settings-item.logout span {
    background: #fee2e2;
}
/* =========================
   ACTIVITY SCREEN
   ========================= */

#activityScreen {
    padding: 28px 20px 110px;
}

#activityScreen .section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

#activityScreen .section-heading h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

#activityScreen .section-heading button {
    border: none;
    background: transparent;
    color: #7b3fe4;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.activity-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.activity-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    background: #f1e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
}

.activity-info strong {
    font-size: 16px;
    font-weight: 700;
}

.activity-info small {
    color: #8b8b96;
    font-size: 13px;
}

.activity-amount {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.activity-amount.success {
    color: #16a34a;
}

.activity-amount.failed {
    color: #e53935;
}
/* Activity Search & Filter */

.activity-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px;
    gap: 12px;
    margin: 0 0 22px 0;
    width: 100%;
    box-sizing: border-box;
}

#activitySearch {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #e5e0ee;
    border-radius: 16px;
    background: #ffffff;
    font-size: 15px;
    color: #171321;
    outline: none;
    box-sizing: border-box;
}

#activityFilter {
    width: 130px;
    height: 52px;
    padding: 0 10px;
    border: 1px solid #e5e0ee;
    border-radius: 16px;
    background: #ffffff;
    color: #171321;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

#activitySearch:focus,
#activityFilter:focus {
    border-color: #7b3fe4;
    box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.10);
}
/* ================================
   ACTIVITY FILTER
================================ */

.activity-filter-button {
    width: 100%;
    height: 64px;
    padding: 0 20px;
    border: 1px solid #e5d8ff;
    border-radius: 20px;
    background: #ffffff;
    color: #17131f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(80, 40, 120, 0.06);
}

.activity-filter-button span:last-child {
    color: #7b3fe4;
    font-size: 22px;
}

/* Filter sheet */
.activity-filter-sheet {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.activity-filter-sheet.show {
    display: block;
}

/* Dark background */
.activity-filter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 30, 0.45);
}

/* Bottom panel */
.activity-filter-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 28px 28px 0 0;
    padding: 24px 20px 30px;
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.12);
}

/* Header */
.activity-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.activity-filter-header strong {
    font-size: 21px;
    color: #17131f;
}

.activity-filter-header button {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f4efff;
    color: #7b3fe4;
    font-size: 17px;
    cursor: pointer;
}

/* Options */
.activity-filter-option {
    width: 100%;
    min-height: 58px;
    padding: 0 4px;
    border: none;
    border-bottom: 1px solid #f0edf5;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #17131f;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
}

.activity-filter-option:last-child {
    border-bottom: none;
}

.activity-filter-option.active {
    color: #7b3fe4;
    font-weight: 700;
}

/* Check mark */
.filter-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #d8d3df;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 15px;
}

.activity-filter-option.active .filter-check {
    background: #7b3fe4;
    border-color: #7b3fe4;
    color: #ffffff;
}

/* Mobile spacing */
@media (max-width: 600px) {
    .activity-filter-button {
        height: 64px;
        border-radius: 20px;
    }

    .activity-filter-panel {
        padding-bottom: 32px;
    }
}
/* Activity filter button */
#activityFilterButton {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* Filter text */
#activityFilterButton span:first-child {
    flex: 1;
    text-align: left;
}

/* Filter arrow */
#activityFilterButton span:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    line-height: 1;
    margin-left: 8px;
    transform: translateY(-1px);
}
#activityFilterButton {
    position: relative !important;
    display: block !important;
    padding: 0 55px 0 20px !important;
}

#activityFilterButton > span:first-child {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

#activityFilterButton .filter-arrow {
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    font-size: 22px !important;
    line-height: 1 !important;
    color: #7c3aed !important;
}
#activityFilterButton {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px 0 24px !important;
}

#activityFilterButton > span:first-child {
    flex: 1 !important;
    text-align: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
}

#activityFilterButton > .filter-arrow {
    flex: 0 0 24px !important;
    width: 24px !important;
    text-align: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    font-size: 22px !important;
    line-height: 1 !important;
}
/* ================================
   FUND WALLET
================================ */

.fund-wallet-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.fund-wallet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 35, 0.55);
}

.fund-wallet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 28px 28px 0 0;
  padding: 24px 20px 28px;
  box-shadow: 0 -10px 35px rgba(0,0,0,0.12);
}

.fund-wallet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}

.fund-wallet-header h2 {
  margin: 0;
  font-size: 25px;
  color: #171321;
}

.fund-wallet-header p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #777381;
}

.fund-wallet-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f4efff;
  color: #6d20df;
  font-size: 28px;
}

.fund-wallet-account {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #f7f3ff;
  border: 1px solid #e7dcff;
  border-radius: 20px;
  margin-bottom: 14px;
}

.account-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #6d20df;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.account-content {
  flex: 1;
}

.account-content span {
  display: block;
  font-size: 13px;
  color: #777381;
  margin-bottom: 4px;
}

.account-content strong {
  display: block;
  font-size: 21px;
  color: #171321;
  letter-spacing: 1px;
}

.copy-account-btn {
  border: 0;
  background: #6d20df;
  color: white;
  border-radius: 12px;
  padding: 10px 13px;
  font-weight: 700;
}

.fund-wallet-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fund-detail {
  padding: 15px;
  border: 1px solid #eeeeee;
  border-radius: 16px;
}

.fund-detail span {
  display: block;
  font-size: 12px;
  color: #88838f;
  margin-bottom: 5px;
}

.fund-detail strong {
  font-size: 14px;
  color: #171321;
}

.fund-wallet-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  padding: 14px;
  background: #faf9fc;
  border-radius: 15px;
}

.fund-wallet-notice span {
  color: #6d20df;
  font-size: 18px;
}

.fund-wallet-notice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #68636f;
}

.fund-wallet-done {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #6d20df, #8b2be8);
  color: white;
  font-size: 17px;
  font-weight: 700;
}
.send-wallet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 15, 35, 0.55);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 9999;
}

.send-wallet-panel {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 28px 28px 0 0;
    padding: 28px 22px 30px;
    box-sizing: border-box;
    animation: sendWalletUp 0.25s ease;
}

@keyframes sendWalletUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.send-wallet-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
}

.send-wallet-header h2 {
    margin: 0;
    color: #151525;
    font-size: 27px;
    font-weight: 800;
}

.send-wallet-header p {
    margin: 7px 0 0;
    color: #777;
    font-size: 14px;
}

.send-close-btn {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #f3eaff;
    color: #6d20df;
    font-size: 30px;
    cursor: pointer;
}

.send-wallet-content label {
    display: block;
    margin: 0 0 8px;
    color: #30303b;
    font-size: 14px;
    font-weight: 700;
}

.send-input-box {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 58px;
    padding: 0 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #e5e0ee;
    border-radius: 16px;
    background: #fff;
}

.send-input-box span {
    color: #6d20df;
    font-size: 20px;
    font-weight: 700;
}

.send-input-box input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
    color: #171321;
}

.amount-box input {
    font-size: 20px;
    font-weight: 700;
}

.send-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    margin: 8px 0 22px;
    border-radius: 16px;
    background: #f8f6fc;
}

.send-info span {
    color: #6d20df;
    font-size: 18px;
}

.send-info p {
    margin: 0;
    color: #68636f;
    font-size: 13px;
    line-height: 1.5;
}

.send-continue-btn {
    width: 100%;
    border: 0;
    border-radius: 17px;
    padding: 17px;
    background: linear-gradient(135deg, #6d20df, #8b2be8);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(109, 32, 223, 0.20);
    cursor: pointer;
}
.send-review-icon {
    width: 58px;
    height: 58px;
    margin: 8px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #f0e5ff;
    color: #6d20df;
    font-size: 25px;
    box-shadow: 0 8px 20px rgba(109, 32, 223, 0.10);
}

.send-review-title {
    margin: 0;
    text-align: center;
    color: #151525;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.send-review-subtitle {
    margin: 6px 0 22px;
    text-align: center;
    color: #77727f;
    font-size: 14px;
    line-height: 1.5;
}

.send-review-card {
    padding: 18px 18px 16px;
    border: 1px solid #ebe6f2;
    border-radius: 20px;
    background: #fbfaff;
    margin-bottom: 20px;
}

.send-review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 11px 0;
}

.send-review-row span {
    color: #85808d;
    font-size: 14px;
}

.send-review-row strong {
    color: #171321;
    font-size: 15px;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.send-review-divider {
    height: 1px;
    background: #e8e3ef;
    margin: 8px 0;
}

.send-review-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
}

.send-review-total span {
    color: #171321;
    font-size: 15px;
    font-weight: 800;
}

.send-review-total strong {
    color: #6d20df;
    font-size: 22px;
    font-weight: 800;
}

.send-back-btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: 1px solid #e7e2ed;
    border-radius: 17px;
    background: #fff;
    color: #6d20df;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
.send-success-icon {
    width: 72px;
    height: 72px;
    margin: 8px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e9f9ef;
    color: #18a957;
    font-size: 36px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(24, 169, 87, 0.12);
}

.send-success-title {
    margin: 0;
    text-align: center;
    color: #151525;
    font-size: 25px;
    font-weight: 800;
}

.send-success-subtitle {
    margin: 7px 0 20px;
    text-align: center;
    color: #77727f;
    font-size: 14px;
}

.send-success-amount {
    text-align: center;
    color: #6d20df;
    font-size: 34px;
    font-weight: 800;
    margin: 5px 0 8px;
}

.send-success-recipient {
    text-align: center;
    margin-bottom: 22px;
}

.send-success-recipient span {
    display: block;
    color: #88838f;
    font-size: 13px;
    margin-bottom: 4px;
}

.send-success-recipient strong {
    color: #171321;
    font-size: 17px;
}

.send-success-card {
    padding: 16px 18px;
    border: 1px solid #ebe6f2;
    border-radius: 20px;
    background: #fbfaff;
    margin-bottom: 22px;
}

.send-success-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.send-success-row span {
    color: #85808d;
    font-size: 14px;
}

.send-success-row strong {
    color: #171321;
    font-size: 14px;
    text-align: right;
}

.send-success-done {
    width: 100%;
    border: 0;
    border-radius: 17px;
    padding: 17px;
    background: linear-gradient(135deg, #6d20df, #8b2be8);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(109, 32, 223, 0.20);
    cursor: pointer;
}