/* =========================================================
   TASKNOVA — MASTER STYLESHEET
   Design:
   Primary: Vivid Magenta
   Accent: Bright Cyan
   Background: Off White
   Vibe: Clean • Trustworthy • Modern • Fintech
   ========================================================= */


/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {

    --primary: #E6007E;
    --primary-dark: #B80063;
    --primary-light: #FDE7F3;

    --accent: #00D9FF;
    --accent-dark: #008FA8;
    --accent-light: #E5FAFF;

    --background: #FAFAF7;
    --surface: #FFFFFF;
    --surface-soft: #F5F7F9;

    --dark: #111827;
    --text: #18202B;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;

    --border: #E5E7EB;
    --border-dark: #D1D5DB;

    --success: #16A34A;
    --success-light: #DCFCE7;

    --warning: #F59E0B;
    --warning-light: #FEF3C7;

    --danger: #DC2626;
    --danger-light: #FEE2E2;

    --shadow-sm:
        0 2px 8px rgba(17, 24, 39, 0.05);

    --shadow-md:
        0 8px 24px rgba(17, 24, 39, 0.08);

    --shadow-lg:
        0 16px 40px rgba(17, 24, 39, 0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;

    --container: 1180px;

}


/* =========================================================
   2. RESET
   ========================================================= */

*,
*::before,
*::after {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    padding: 0;

    background:
        var(--background);

    color:
        var(--text);

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    line-height: 1.6;

}


img {

    max-width: 100%;

    height: auto;

}


button,
input,
select,
textarea {

    font: inherit;

}


button {

    cursor: pointer;

}


a {

    color:
        var(--primary);

    text-decoration:
        none;

}


a:hover {

    color:
        var(--primary-dark);

}


h1,
h2,
h3,
h4,
h5,
h6 {

    margin-top: 0;

    color:
        var(--text);

    line-height: 1.25;

}


p {

    margin-top: 0;

}


/* =========================================================
   3. GENERAL CONTAINER
   ========================================================= */

.container {

    width:
        min(100% - 32px, var(--container));

    margin:
        0 auto;

}


.dashboard-container {

    width:
        min(100% - 40px, 1120px);

    margin:
        0 auto;

    padding:
        30px 0 50px;

}


/* =========================================================
   4. HEADER
   ========================================================= */

.dashboard-header {

    position:
        sticky;

    top:
        0;

    z-index:
        900;

    min-height:
        64px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        15px;

    padding:
        10px 25px;

    background:
        rgba(255, 255, 255, 0.96);

    border-bottom:
        1px solid var(--border);

    box-shadow:
        var(--shadow-sm);

    backdrop-filter:
        blur(12px);

}


.dashboard-header h1 {

    margin:
        0;

    color:
        var(--dark);

    font-size:
        21px;

    font-weight:
        850;

}


.dashboard-header h1::after {

    content:
        ".";

    color:
        var(--primary);

}


.dashboard-header div {

    display:
        flex;

    align-items:
        center;

    gap:
        16px;

    flex-wrap:
        wrap;

}


.dashboard-header a {

    color:
        var(--text-secondary);

    font-size:
        13px;

    font-weight:
        650;

}


.dashboard-header a:hover {

    color:
        var(--primary);

}


/* =========================================================
   5. ACCOUNT CARDS
   ========================================================= */

.account-card {

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    padding:
        22px;

    margin-bottom:
        18px;

    box-shadow:
        var(--shadow-sm);

}


.account-card h2 {

    margin-bottom:
        6px;

    font-size:
        21px;

}


.account-card h3 {

    margin-bottom:
        8px;

    font-size:
        17px;

}


.account-card p {

    color:
        var(--text-secondary);

}


.card {

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-sm);

}


/* =========================================================
   6. BUTTONS
   ========================================================= */

.btn {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        7px;

    min-height:
        42px;

    padding:
        9px 16px;

    border:
        1px solid transparent;

    border-radius:
        var(--radius-sm);

    font-size:
        13px;

    font-weight:
        750;

    text-decoration:
        none;

    transition:
        0.2s ease;

}


.btn:hover {

    transform:
        translateY(-1px);

}


.btn-primary {

    background:
        var(--primary);

    color:
        #FFFFFF;

    border-color:
        var(--primary);

    box-shadow:
        0 4px 12px
        rgba(230, 0, 126, 0.16);

}


.btn-primary:hover {

    background:
        var(--primary-dark);

    border-color:
        var(--primary-dark);

    color:
        #FFFFFF;

}


.btn-accent {

    background:
        var(--accent);

    color:
        #06333B;

    border-color:
        var(--accent);

}


.btn-accent:hover {

    background:
        #33E1FF;

    color:
        #06333B;

}


.btn-secondary {

    background:
        var(--surface);

    color:
        var(--text-secondary);

    border-color:
        var(--border-dark);

}


.btn-secondary:hover {

    color:
        var(--primary);

    border-color:
        var(--primary);

}


.btn-success {

    background:
        var(--success);

    color:
        #FFFFFF;

    border-color:
        var(--success);

}


.btn-danger {

    background:
        var(--danger);

    color:
        #FFFFFF;

    border-color:
        var(--danger);

}


.btn-sm {

    min-height:
        34px;

    padding:
        7px 11px;

    font-size:
        12px;

}


.btn-lg {

    min-height:
        50px;

    padding:
        11px 20px;

    font-size:
        15px;

}


.btn-block {

    width:
        100%;

}


/* =========================================================
   7. FORMS
   ========================================================= */

.form-group {

    margin-bottom:
        17px;

}


.form-group label {

    display:
        block;

    margin-bottom:
        7px;

    color:
        var(--text);

    font-size:
        13px;

    font-weight:
        700;

}


input,
select,
textarea {

    width:
        100%;

    min-height:
        44px;

    padding:
        10px 12px;

    background:
        var(--surface);

    color:
        var(--text);

    border:
        1px solid var(--border-dark);

    border-radius:
        var(--radius-sm);

    outline:
        none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


textarea {

    min-height:
        110px;

    resize:
        vertical;

}


input::placeholder,
textarea::placeholder {

    color:
        #9CA3AF;

}


input:focus,
select:focus,
textarea:focus {

    border-color:
        var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(230, 0, 126, 0.09);

}


input[type="checkbox"],
input[type="radio"] {

    width:
        auto;

    min-height:
        auto;

    accent-color:
        var(--primary);

}


/* =========================================================
   8. BADGES / STATUS
   ========================================================= */

.badge {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        5px 9px;

    border-radius:
        999px;

    font-size:
        11px;

    font-weight:
        800;

}


.badge-primary {

    background:
        var(--primary-light);

    color:
        var(--primary-dark);

}


.badge-success {

    background:
        var(--success-light);

    color:
        #166534;

}


.badge-warning {

    background:
        var(--warning-light);

    color:
        #92400E;

}


.badge-danger {

    background:
        var(--danger-light);

    color:
        #991B1B;

}


.badge-info {

    background:
        var(--accent-light);

    color:
        var(--accent-dark);

}


.payment-status {

    display:
        inline-flex;

    padding:
        6px 11px;

    border-radius:
        999px;

    font-size:
        12px;

    font-weight:
        800;

}


.payment-status.pending {

    background:
        var(--warning-light);

    color:
        #92400E;

}


.payment-status.approved {

    background:
        var(--success-light);

    color:
        #166534;

}


.payment-status.rejected {

    background:
        var(--danger-light);

    color:
        #991B1B;

}


/* =========================================================
   9. TRANSACTION HISTORY
   ========================================================= */

.table-wrapper {

    width:
        100%;

    overflow-x:
        auto;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-sm);

}


.data-table {

    width:
        100%;

    min-width:
        700px;

    border-collapse:
        collapse;

}


.data-table thead {

    background:
        var(--dark);

}


.data-table th {

    padding:
        14px 16px;

    color:
        #FFFFFF;

    text-align:
        left;

    font-size:
        12px;

    font-weight:
        700;

    text-transform:
        uppercase;

}


.data-table td {

    padding:
        15px 16px;

    color:
        var(--text-secondary);

    border-bottom:
        1px solid var(--border);

}


.data-table tbody tr:hover {

    background:
        #FAFBFC;

}


.table-amount {

    color:
        var(--text);

    font-weight:
        750;

    white-space:
        nowrap;

}


.table-reference {

    color:
        var(--accent-dark);

    font-family:
        "Courier New",
        monospace;

    font-size:
        12px;

    word-break:
        break-all;

}


/* =========================================================
   10. REFERRALS
   ========================================================= */

.referral-card {

    position:
        relative;

    overflow:
        hidden;

    padding:
        26px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #241323 55%,
            #12323A
        );

    color:
        #FFFFFF;

    border-radius:
        var(--radius-xl);

    box-shadow:
        var(--shadow-lg);

}


.referral-card h2,
.referral-card h3 {

    color:
        #FFFFFF;

}


.referral-card p {

    color:
        #D1D5DB;

}


.referral-link-wrapper {

    display:
        flex;

    width:
        100%;

    margin-top:
        18px;

}


.referral-link-wrapper input {

    flex:
        1;

    color:
        #FFFFFF;

    background:
        rgba(255,255,255,0.10);

    border-color:
        rgba(255,255,255,0.20);

    border-right:
        none;

    border-radius:
        var(--radius-sm) 0 0 var(--radius-sm);

}


.copy-btn {

    min-height:
        44px;

    padding:
        0 18px;

    background:
        var(--accent);

    color:
        #06333B;

    border:
        none;

    border-radius:
        0 var(--radius-sm) var(--radius-sm) 0;

    font-weight:
        800;

}


.referral-stats {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        15px;

    margin-top:
        20px;

}


.referral-stat {

    padding:
        17px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

}


.referral-stat-label {

    display:
        block;

    color:
        var(--text-muted);

    font-size:
        12px;

}


.referral-stat-value {

    display:
        block;

    color:
        var(--text);

    font-size:
        22px;

    font-weight:
        800;

}


/* =========================================================
   11. EARNINGS
   ========================================================= */

.earnings-card {

    padding:
        24px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-sm);

}


.earnings-amount {

    color:
        var(--text);

    font-size:
        34px;

    font-weight:
        850;

}


.earnings-label {

    display:
        block;

    color:
        var(--text-muted);

    font-size:
        12px;

}


/* =========================================================
   12. AIRTIME / DATA
   ========================================================= */

.service-page {

    max-width:
        900px;

    margin:
        0 auto;

}


.service-header {

    margin-bottom:
        22px;

}


.service-header h2 {

    margin-bottom:
        5px;

}


.service-header p {

    color:
        var(--text-muted);

}


.service-card {

    padding:
        24px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-sm);

}


.service-icon {

    width:
        52px;

    height:
        52px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        16px;

    background:
        var(--primary-light);

    color:
        var(--primary);

    border-radius:
        14px;

    font-size:
        22px;

}


.network-options {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        12px;

    margin-bottom:
        22px;

}


.network-option {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        62px;

    padding:
        10px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    color:
        var(--text-secondary);

    font-weight:
        750;

    cursor:
        pointer;

}


.network-option:hover,
.network-option.active {

    border-color:
        var(--primary);

    background:
        var(--primary-light);

    color:
        var(--primary-dark);

}


.data-plans {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        12px;

}


.data-plan {

    padding:
        16px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    cursor:
        pointer;

}


.data-plan:hover,
.data-plan.active {

    border-color:
        var(--accent);

    background:
        var(--accent-light);

}


.data-plan-name {

    display:
        block;

    font-weight:
        800;

}


.data-plan-price {

    display:
        block;

    color:
        var(--primary);

    font-size:
        17px;

    font-weight:
        850;

}


.data-plan-validity {

    color:
        var(--text-muted);

    font-size:
        12px;

}


/* =========================================================
   13. PURCHASE SUMMARY
   ========================================================= */

.purchase-summary {

    margin-top:
        22px;

    padding:
        18px;

    background:
        var(--surface-soft);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

}


.purchase-summary-row {

    display:
        flex;

    justify-content:
        space-between;

    padding:
        8px 0;

    color:
        var(--text-secondary);

}


.purchase-summary-row.total {

    padding-top:
        14px;

    border-top:
        1px solid var(--border);

    color:
        var(--text);

    font-size:
        17px;

    font-weight:
        800;

}


.purchase-button {

    width:
        100%;

    min-height:
        50px;

    margin-top:
        18px;

}


/* =========================================================
   14. WALLET FUNDING
   ========================================================= */

.funding-page {

    max-width:
        760px;

    margin:
        0 auto;

}


.funding-card {

    padding:
        26px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-xl);

    box-shadow:
        var(--shadow-md);

}


.payment-account {

    margin:
        20px 0;

    padding:
        22px;

    background:
        linear-gradient(
            135deg,
            #15101A,
            #241323 55%,
            #073A43
        );

    color:
        #FFFFFF;

    border-radius:
        var(--radius-lg);

}


.payment-account-label {

    display:
        block;

    margin-bottom:
        7px;

    color:
        #BFC4CA;

    font-size:
        12px;

    text-transform:
        uppercase;

}


.payment-account-name {

    margin-bottom:
        17px;

    color:
        #FFFFFF;

    font-size:
        17px;

    font-weight:
        800;

}


.payment-account-number {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        12px;

    padding:
        13px 15px;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid
        rgba(255,255,255,0.15);

    border-radius:
        var(--radius-md);

}


.payment-account-number strong {

    color:
        #FFFFFF;

    font-size:
        22px;

    letter-spacing:
        1px;

}


.payment-account-number button {

    padding:
        8px 12px;

    background:
        var(--accent);

    color:
        #06333B;

    border:
        none;

    border-radius:
        var(--radius-sm);

    font-weight:
        800;

}


.payment-instructions {

    padding:
        18px;

    background:
        var(--surface-soft);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

}


.payment-instructions li {

    margin-bottom:
        9px;

    color:
        var(--text-secondary);

}


.payment-warning {

    margin:
        18px 0;

    padding:
        13px 15px;

    background:
        var(--warning-light);

    border:
        1px solid #FDE68A;

    border-radius:
        var(--radius-md);

    color:
        #92400E;

}


.funding-amount {

    margin-top:
        20px;

}


.quick-amounts {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        8px;

    margin-top:
        10px;

}


.quick-amount {

    min-height:
        40px;

    background:
        var(--surface);

    color:
        var(--text-secondary);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-sm);

    font-weight:
        700;

}


.quick-amount:hover,
.quick-amount.active {

    background:
        var(--primary-light);

    color:
        var(--primary);

    border-color:
        var(--primary);

}


/* =========================================================
   15. ALERTS
   ========================================================= */

.alert {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        10px;

    padding:
        13px 15px;

    margin-bottom:
        18px;

    border-radius:
        var(--radius-md);

    font-size:
        13px;

}


.alert-success {

    background:
        var(--success-light);

    border:
        1px solid #BBF7D0;

    color:
        #166534;

}


.alert-danger {

    background:
        var(--danger-light);

    border:
        1px solid #FECACA;

    color:
        #991B1B;

}


.alert-warning {

    background:
        var(--warning-light);

    border:
        1px solid #FDE68A;

    color:
        #92400E;

}


.alert-info {

    background:
        var(--accent-light);

    border:
        1px solid rgba(0,217,255,0.25);

    color:
        #075B6B;

}


/* =========================================================
   16. LOADING
   ========================================================= */

.loading-container {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    padding:
        30px;

    color:
        var(--text-muted);

}


.loading-spinner {

    width:
        22px;

    height:
        22px;

    border:
        3px solid var(--border);

    border-top-color:
        var(--primary);

    border-radius:
        50%;

    animation:
        spin
        0.75s linear infinite;

}


@keyframes spin {

    to {

        transform:
            rotate(360deg);

    }

}


.btn.loading {

    position:
        relative;

    pointer-events:
        none;

    color:
        transparent !important;

}


.btn.loading::after {

    content:
        "";

    position:
        absolute;

    width:
        17px;

    height:
        17px;

    top:
        50%;

    left:
        50%;

    margin:
        -8.5px 0 0 -8.5px;

    border:
        2px solid rgba(255,255,255,0.45);

    border-top-color:
        #FFFFFF;

    border-radius:
        50%;

    animation:
        spin
        0.7s linear infinite;

}


/* =========================================================
   17. EMPTY STATE
   ========================================================= */

.empty-state {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-direction:
        column;

    text-align:
        center;

    padding:
        55px 25px;

    background:
        var(--surface);

    border:
        1px dashed var(--border-dark);

    border-radius:
        var(--radius-lg);

}


.empty-state-icon {

    width:
        56px;

    height:
        56px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        14px;

    background:
        var(--surface-soft);

    color:
        var(--text-muted);

    border-radius:
        50%;

}


/* =========================================================
   18. ADMIN DASHBOARD
   ========================================================= */

.admin-page-header {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    flex-wrap:
        wrap;

    margin-bottom:
        25px;

}


.admin-stat-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(190px, 1fr)
        );

    gap:
        16px;

    margin-bottom:
        25px;

}


.admin-stat {

    padding:
        20px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-sm);

}


.admin-stat-label {

    display:
        block;

    color:
        var(--text-muted);

    font-size:
        12px;

    text-transform:
        uppercase;

}


.admin-stat-value {

    display:
        block;

    margin-top:
        5px;

    color:
        var(--text);

    font-size:
        27px;

    font-weight:
        800;

}


.admin-stat.primary {

    border-top:
        3px solid var(--primary);

}


.admin-stat.accent {

    border-top:
        3px solid var(--accent);

}


.admin-stat.success {

    border-top:
        3px solid var(--success);

}


.admin-stat.warning {

    border-top:
        3px solid var(--warning);

}


.admin-stat.danger {

    border-top:
        3px solid var(--danger);

}


.admin-action-bar {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        12px;

    flex-wrap:
        wrap;

    margin-bottom:
        18px;

}


.payment-card {

    padding:
        20px;

    margin-bottom:
        15px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-left:
        4px solid var(--accent);

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-sm);

}


.payment-card:hover {

    box-shadow:
        var(--shadow-md);

}


/* =========================================================
   19. ADMIN SIDEBAR
   ========================================================= */

.dashboard-layout {

    display:
        flex;

    min-height:
        100vh;

}


.dashboard-sidebar {

    position:
        fixed;

    inset:
        0 auto 0 0;

    z-index:
        1000;

    width:
        245px;

    display:
        flex;

    flex-direction:
        column;

    background:
        #111827;

    color:
        #FFFFFF;

}


.sidebar-brand {

    display:
        flex;

    align-items:
        center;

    min-height:
        72px;

    padding:
        0 22px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);

}


.sidebar-brand h1 {

    margin:
        0;

    color:
        #FFFFFF;

    font-size:
        21px;

}


.sidebar-brand span {

    color:
        var(--accent);

}


.sidebar-nav {

    flex:
        1;

    padding:
        18px 12px;

    overflow-y:
        auto;

}


.sidebar-nav-label {

    padding:
        8px 12px;

    color:
        #8E98A8;

    font-size:
        10px;

    font-weight:
        800;

    text-transform:
        uppercase;

}


.sidebar-nav a {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    min-height:
        44px;

    margin-bottom:
        4px;

    padding:
        9px 12px;

    color:
        #B8C0CC;

    border-radius:
        var(--radius-sm);

    font-size:
        13px;

    font-weight:
        650;

}


.sidebar-nav a:hover {

    background:
        rgba(255,255,255,0.07);

    color:
        #FFFFFF;

}


.sidebar-nav a.active {

    background:
        rgba(230,0,126,0.18);

    color:
        #FFFFFF;

    border-left:
        3px solid var(--primary);

}


.dashboard-main {

    width:
        100%;

    min-width:
        0;

    margin-left:
        245px;

}


.dashboard-topbar {

    position:
        sticky;

    top:
        0;

    z-index:
        900;

    min-height:
        68px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding:
        12px 25px;

    background:
        rgba(255,255,255,0.94);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(12px);

}


/* =========================================================
   20. AUTHENTICATION
   ========================================================= */

.auth-page {

    min-height:
        100vh;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        30px 20px;

    background:
        linear-gradient(
            135deg,
            #FAFAF7,
            #F7F8FA 55%,
            #E6FBFF
        );

}


.auth-container {

    width:
        100%;

    max-width:
        440px;

}


.auth-card {

    padding:
        32px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-xl);

    box-shadow:
        var(--shadow-lg);

}


.auth-brand {

    text-align:
        center;

    margin-bottom:
        25px;

}


.auth-brand h1 {

    color:
        var(--dark);

    font-size:
        28px;

    font-weight:
        850;

}


.auth-brand h1 span {

    color:
        var(--primary);

}


.auth-brand p {

    color:
        var(--text-muted);

    font-size:
        13px;

}


.auth-card h2 {

    text-align:
        center;

    font-size:
        23px;

}


.auth-subtitle {

    text-align:
        center;

    color:
        var(--text-muted);

    font-size:
        13px;

    margin-bottom:
        24px;

}


.auth-submit {

    width:
        100%;

    min-height:
        48px;

}


.auth-footer {

    text-align:
        center;

    margin-top:
        22px;

    color:
        var(--text-muted);

    font-size:
        13px;

}


/* =========================================================
   21. UTILITY CLASSES
   ========================================================= */

.text-primary {

    color:
        var(--primary) !important;

}


.text-accent {

    color:
        var(--accent-dark) !important;

}


.text-success {

    color:
        var(--success) !important;

}


.text-danger {

    color:
        var(--danger) !important;

}


.text-muted {

    color:
        var(--text-muted) !important;

}


.text-center {

    text-align:
        center !important;

}


.w-100 {

    width:
        100% !important;

}


.hidden {

    display:
        none !important;

}


.divider {

    width:
        100%;

    height:
        1px;

    margin:
        20px 0;

    background:
        var(--border);

}


/* =========================================================
   22. MOBILE RESPONSIVENESS
   ========================================================= */

@media (max-width: 850px) {

    .dashboard-sidebar {

        transform:
            translateX(-100%);

        transition:
            transform 0.25s ease;

    }


    .dashboard-sidebar.open {

        transform:
            translateX(0);

    }


    .dashboard-main {

        margin-left:
            0;

    }


    .dashboard-container {

        width:
            min(100% - 28px, 1120px);

    }


    .referral-stats {

        grid-template-columns:
            1fr;

    }


    .network-options {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 650px) {

    .dashboard-header {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .dashboard-header div {

        width:
            100%;

        justify-content:
            space-between;

    }


    .data-plans {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .quick-amounts {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .payment-account-number {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .payment-account-number button {

        width:
            100%;

    }

}


@media (max-width: 500px) {

    .dashboard-container {

        padding:
            20px 0 40px;

    }


    .account-card {

        padding:
            18px;

    }


    .service-card,
    .funding-card,
    .auth-card {

        padding:
            19px;

    }


    .data-plans {

        grid-template-columns:
            1fr;

    }


    .network-options {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .referral-link-wrapper {

        flex-direction:
            column;

        gap:
            8px;

    }


    .referral-link-wrapper input {

        border-right:
            1px solid
            rgba(255,255,255,0.20);

        border-radius:
            var(--radius-sm);

    }


    .copy-btn {

        width:
            100%;

        border-radius:
            var(--radius-sm);

    }

}


/* =========================================================
   23. ACCESSIBILITY
   ========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {

    outline:
        3px solid
        rgba(0,217,255,0.35);

    outline-offset:
        2px;

}


/* =========================================================
   END TASKNOVA MASTER STYLESHEET
   ========================================================= */

   /* =========================================================
   TASKNOVA ADMIN DASHBOARD
   /assets/css/style.css
   ========================================================= */

.admin-dashboard {

    min-height: 100vh;

    background:
        var(--background);

}


/* =========================================================
   ADMIN HEADER
   ========================================================= */

.admin-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 30px;

    background: var(--surface);

    border-bottom:
        1px solid var(--border);

    box-shadow:
        var(--shadow-sm);

}


.admin-header-brand {

    display: flex;

    align-items: center;

    gap: 10px;

}


.admin-header-brand h1 {

    margin: 0;

    font-size: 23px;

    font-weight: 850;

    color: var(--dark);

}


.admin-header-brand h1 span {

    color: var(--primary);

}


.admin-header-right {

    display: flex;

    align-items: center;

    gap: 12px;

}


/* =========================================================
   ADMIN WELCOME
   ========================================================= */

.admin-welcome {

    padding: 30px;

}


.admin-welcome h2 {

    margin: 0 0 5px;

    font-size: 27px;

    font-weight: 850;

}


.admin-welcome p {

    margin: 0;

    color: var(--text-muted);

}


/* =========================================================
   ADMIN CONTENT
   ========================================================= */

.admin-content {

    padding:
        0 30px 40px;

}


/* =========================================================
   ADMIN STAT GRID
   ========================================================= */

.admin-stats {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    margin-bottom: 25px;

}


.admin-stat-card {

    position: relative;

    overflow: hidden;

    padding: 22px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-sm);

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.admin-stat-card:hover {

    transform:
        translateY(-2px);

    box-shadow:
        var(--shadow-md);

}


.admin-stat-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        var(--primary);

}


.admin-stat-card.cyan::before {

    background:
        var(--accent);

}


.admin-stat-card.green::before {

    background:
        var(--success);

}


.admin-stat-card.orange::before {

    background:
        var(--warning);

}


.admin-stat-icon {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 14px;

    background:
        var(--primary-light);

    color:
        var(--primary);

    border-radius:
        12px;

    font-size: 18px;

}


.admin-stat-card.cyan
.admin-stat-icon {

    background:
        var(--accent-light);

    color:
        var(--accent-dark);

}


.admin-stat-card.green
.admin-stat-icon {

    background:
        var(--success-light);

    color:
        var(--success);

}


.admin-stat-card.orange
.admin-stat-icon {

    background:
        var(--warning-light);

    color:
        var(--warning);

}


.admin-stat-label {

    display: block;

    margin-bottom: 4px;

    color:
        var(--text-muted);

    font-size: 12px;

    font-weight: 650;

}


.admin-stat-value {

    display: block;

    color:
        var(--text);

    font-size: 27px;

    font-weight: 850;

}


/* =========================================================
   ADMIN SECTION
   ========================================================= */

.admin-section {

    margin-bottom: 24px;

    padding: 22px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-sm);

}


.admin-section-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;

}


.admin-section-header h3 {

    margin: 0;

    font-size: 17px;

}


.admin-section-header p {

    margin: 3px 0 0;

    color:
        var(--text-muted);

    font-size: 12px;

}


/* =========================================================
   ADMIN QUICK ACTIONS
   ========================================================= */

.admin-actions {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

}


.admin-action {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 16px;

    background:
        var(--surface-soft);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    color:
        var(--text);

    text-decoration:
        none;

    transition:
        .2s ease;

}


.admin-action:hover {

    background:
        var(--primary-light);

    border-color:
        var(--primary);

    color:
        var(--primary-dark);

    transform:
        translateY(-2px);

}


.admin-action-icon {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--primary);

    color:
        #FFFFFF;

    border-radius:
        11px;

}


.admin-action:nth-child(2)
.admin-action-icon {

    background:
        var(--accent);

    color:
        #06333B;

}


.admin-action-title {

    display: block;

    font-size: 13px;

    font-weight: 800;

}


.admin-action-description {

    display: block;

    margin-top: 2px;

    color:
        var(--text-muted);

    font-size: 11px;

}


/* =========================================================
   PENDING PAYMENT NOTICE
   ========================================================= */

.admin-pending-notice {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 17px 19px;

    margin-bottom: 20px;

    background:
        var(--warning-light);

    border:
        1px solid #FDE68A;

    border-left:
        4px solid var(--warning);

    border-radius:
        var(--radius-md);

}


.admin-pending-notice strong {

    color:
        #92400E;

}


.admin-pending-notice span {

    color:
        #92400E;

    font-size:
        12px;

}


/* =========================================================
   ADMIN TABLE
   ========================================================= */

.admin-table-wrapper {

    overflow-x:
        auto;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

}


.admin-table {

    width:
        100%;

    min-width:
        650px;

    border-collapse:
        collapse;

}


.admin-table th {

    padding:
        13px 15px;

    background:
        #111827;

    color:
        #FFFFFF;

    text-align:
        left;

    font-size:
        11px;

    text-transform:
        uppercase;

    letter-spacing:
        .4px;

}


.admin-table td {

    padding:
        14px 15px;

    border-bottom:
        1px solid var(--border);

    color:
        var(--text-secondary);

    font-size:
        13px;

}


.admin-table tbody tr:hover {

    background:
        #FAFBFC;

}


.admin-table tbody tr:last-child td {

    border-bottom:
        none;

}


/* =========================================================
   ADMIN LOGOUT
   ========================================================= */

.admin-logout {

    color:
        var(--danger) !important;

}


.admin-logout:hover {

    background:
        var(--danger-light) !important;

    color:
        var(--danger) !important;

}


/* =========================================================
   ADMIN MOBILE
   ========================================================= */

@media (max-width: 1000px) {

    .admin-stats {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .admin-actions {

        grid-template-columns:
            1fr 1fr;

    }

}


@media (max-width: 650px) {

    .admin-header {

        padding:
            18px;

    }


    .admin-welcome {

        padding:
            22px 18px;

    }


    .admin-content {

        padding:
            0 18px 30px;

    }


    .admin-stats {

        grid-template-columns:
            1fr;

    }


    .admin-actions {

        grid-template-columns:
            1fr;

    }


    .admin-section {

        padding:
            17px;

    }


    .admin-section-header {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .admin-pending-notice {

        align-items:
            flex-start;

        flex-direction:
            column;

    }

}
/* =========================================================
   ADMIN USER REVIEW
   ========================================================= */

.admin-user-details {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    overflow: hidden;

}


.admin-user-detail {

    display: flex;

    flex-direction: column;

    gap: 6px;

    padding: 17px;

    background:
        var(--surface);

    border-bottom:
        1px solid var(--border);

}


.admin-user-detail:nth-child(odd) {

    border-right:
        1px solid var(--border);

}


.admin-detail-label {

    color:
        var(--text-muted);

    font-size:
        11px;

    font-weight:
        700;

    text-transform:
        uppercase;

    letter-spacing:
        .4px;

}


.admin-user-detail strong {

    color:
        var(--text);

    font-size:
        14px;

    word-break:
        break-word;

}


.admin-activation-box {

    margin-top:
        24px;

    padding:
        20px;

    background:
        var(--primary-light);

    border:
        1px solid var(--primary);

    border-radius:
        var(--radius-md);

}


.admin-activation-box h3 {

    margin:
        0 0 7px;

    color:
        var(--primary-dark);

}


.admin-activation-box p {

    margin:
        0;

    color:
        var(--text-secondary);

    font-size:
        13px;

    line-height:
        1.6;

}


@media (max-width: 700px) {

    .admin-user-details {

        grid-template-columns:
            1fr;

    }

    .admin-user-detail:nth-child(odd) {

        border-right:
            none;

    }

}
/* =========================================================
   TASKNOVA ADMIN — USERS PAGE
   ========================================================= */

.admin-header {
    width: min(1400px, 94%);
    margin: 0 auto;
    padding: 22px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.admin-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.admin-header p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-header-actions a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;

    padding: 9px 14px;
    border-radius: 8px;

    transition: 0.2s ease;
}

.admin-header-actions a:hover {
    background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   ADMIN CONTAINER
   ========================================================= */

.admin-container {
    width: min(1400px, 94%);
    margin: 0 auto;
    padding: 35px 0 60px;
}

.admin-page-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
    margin-bottom: 25px;
}

.admin-page-top h2 {
    margin: 0;
    font-size: 28px;
    color: #171526;
}

.admin-page-top p {
    margin: 7px 0 0;
    color: #6b6878;
}


/* =========================================================
   ADMIN CARD
   ========================================================= */

.admin-card {
    background: #ffffff;

    border: 1px solid #eceaf1;
    border-radius: 16px;

    box-shadow:
        0 8px 30px rgba(25, 20, 40, 0.06);

    overflow: hidden;
}

.admin-card-header {
    padding: 22px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid #eeeeF3;
}

.admin-card-header h3 {
    margin: 0;
    font-size: 18px;
    color: #171526;
}

.admin-card-header p {
    margin: 5px 0 0;
    color: #777382;
    font-size: 13px;
}


/* =========================================================
   ADMIN TABLE
   ========================================================= */

.admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 1150px;

    border-collapse: collapse;
}

.admin-table th {
    padding: 15px 18px;

    background: #faf9fc;

    color: #6d6978;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.04em;

    text-align: left;

    border-bottom: 1px solid #eceaf1;
}

.admin-table td {
    padding: 17px 18px;

    color: #292735;

    font-size: 14px;

    border-bottom: 1px solid #f0eef4;

    vertical-align: middle;
}

.admin-table tbody tr {
    transition: background 0.18s ease;
}

.admin-table tbody tr:hover {
    background: #fcf8fc;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}


/* =========================================================
   USER INFORMATION
   ========================================================= */

.user-name {
    font-weight: 700;
    color: #201d2d;
    margin-bottom: 4px;
}

.user-email {
    color: #777382;
    font-size: 12px;
}


/* =========================================================
   PLAN BADGE
   ========================================================= */

.plan-badge {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    border-radius: 20px;

    background: rgba(214, 0, 122, 0.09);
    color: #c0006d;

    font-size: 12px;
    font-weight: 800;
}

.muted {
    color: #9995a3;
}


/* =========================================================
   STATUS BADGES
   ========================================================= */

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 5px 10px;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 800;
}

.status-success {
    background: #e9fbf5;
    color: #087a5b;
}

.status-danger {
    background: #fff0f3;
    color: #c51f45;
}

.status-warning {
    background: #fff7df;
    color: #9a6800;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;

    border-radius: 9px;

    border: none;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.admin-btn:hover {
    transform: translateY(-1px);
}

.admin-btn-small {
    padding: 7px 12px;

    background: #d6007a;
    color: #ffffff;

    box-shadow:
        0 4px 12px rgba(214, 0, 122, 0.18);
}

.admin-btn-small:hover {
    background: #b90069;
    color: #ffffff;
}

.admin-btn-secondary {
    background: #eefcff;
    color: #008fa8;

    border: 1px solid #c9f5fb;
}

.admin-btn-secondary:hover {
    background: #dffaff;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.admin-empty {
    padding: 70px 25px;

    text-align: center;
}

.admin-empty h3 {
    margin: 0 0 8px;

    color: #292735;
}

.admin-empty p {
    margin: 0;

    color: #777382;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 800px) {

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-header-actions {
        width: 100%;
    }

    .admin-page-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-page-top h2 {
        font-size: 24px;
    }

    .admin-container {
        width: 92%;
        padding-top: 25px;
    }

}