:root {
    --blue: #0b5cff;
    --blue-dark: #0647c8;
    --navy: #06152e;
    --navy-2: #030814;
    --gold: #f6b63f;
    --soft: #f5f8ff;
    --text: #182033;
    --muted: #6b7280;
    --border: #e5e7eb;
    --green: #10b981;
    --red: #ef4444;
    --white: #ffffff;
    --shadow: 0 12px 30px rgba(6, 21, 46, 0.06);
}

/* Base reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-weight: 800;
    cursor: pointer;
    background: #ffffff;
    color: var(--text);
}

.btn.primary {
    background: var(--blue);
    color: #ffffff;
    border-color: var(--blue);
}

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

.btn.gold {
    background: var(--gold);
    color: #1f2937;
    border-color: var(--gold);
}

.install-btn {
    border: 0;
    cursor: pointer;
    background: #2563eb;
    color: #ffffff;
}

.install-btn:hover {
    background: #1d4ed8;
}

/* Public top navigation */
.topbar {
    background: var(--navy);
    color: #ffffff;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 18px;
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    font-size: 22px;
    min-width: 0;
}

.brand img {
    display: block;
    height: 44px;
    width: auto;
}

.logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    display: grid;
    place-items: center;
    color: #ffffff;
    flex: 0 0 auto;
}

.navlinks {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navlinks a {
    color: #d9e4ff;
    font-weight: 650;
}

.navlinks a:hover {
    color: #ffffff;
}

/* Public hero */
.hero {
    background: radial-gradient(circle at top right, #1b63ff 0, #06152e 45%, #030814 100%);
    color: #ffffff;
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.eyebrow {
    color: #fbd681;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.02;
    margin: 12px 0;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #dbe7ff;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    padding: 24px;
    backdrop-filter: blur(8px);
}

.metric {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 14px 0;
}

.bar {
    height: 10px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.16);
    overflow: hidden;
}

.bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #ffffff);
}

/* Public sections */
.section {
    padding: 64px 0;
}

.section h2 {
    font-size: 36px;
    margin: 0 0 14px;
}

.muted {
    color: var(--muted);
    line-height: 1.7;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
    max-width: 100%;
    overflow-wrap: break-word;
}

.card h3 {
    margin-top: 0;
}

.icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--soft);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-weight: 900;
}

.page-title {
    background: var(--soft);
    padding: 52px 0;
    border-bottom: 1px solid var(--border);
}

/* Forms */
.form {
    display: grid;
    gap: 14px;
}

.input,
.select,
.textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font: inherit;
    background: #ffffff;
}

.textarea {
    min-height: 110px;
}

.label {
    font-size: 13px;
    font-weight: 800;
    color: #374151;
}

/* Auth */
.auth-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--soft);
    padding: 30px;
}

.auth-card {
    width: min(460px, 96%);
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(6, 21, 46, 0.12);
}

/* Client/admin shell */
.app-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    background: #f8fafc;
    overflow-x: hidden;
}

.sidebar {
    background: var(--navy);
    color: #ffffff;
    padding: 24px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.side-link {
    display: block;
    color: #dbe7ff;
    padding: 12px 14px;
    border-radius: 12px;
    margin: 5px 0;
    font-weight: 750;
}

.side-link:hover,
.side-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.main {
    min-width: 0;
    max-width: 100%;
    padding: 28px;
    overflow-x: hidden;
}

.top-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 22px;
}

.stat {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
}

.stat strong {
    display: block;
    font-size: 28px;
}

/* Tables */
.table-responsive,
.responsive-table,
.table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.table-responsive .table,
.responsive-table .table,
.table-scroll .table {
    min-width: 720px;
}

.table th,
.table td {
    text-align: left;
    padding: 14px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    vertical-align: top;
}

.table th {
    font-weight: 900;
    color: #374151;
    background: #f8fafc;
}

.table tr:last-child td {
    border-bottom: 0;
}

/* Badges and alerts */
.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 99px;
    background: #e8efff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.badge.green {
    background: #e8fff5;
    color: #047857;
}

.badge.red {
    background: #fff0f0;
    color: #b91c1c;
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.alert.success {
    background: #ecfdf5;
    color: #065f46;
}

.alert.error {
    background: #fef2f2;
    color: #991b1b;
}

.progress {
    height: 12px;
    background: #e5e7eb;
    border-radius: 99px;
    overflow: hidden;
}

.progress span {
    height: 100%;
    display: block;
    background: var(--blue);
}

/* Client topbar and wallet */
.client-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    max-width: 100%;
}

.client-topbar-title {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.client-topbar-title strong {
    font-size: 16px;
    color: #0f172a;
}

.client-topbar-title span {
    font-size: 13px;
    color: #64748b;
}

.wallet-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wallet-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #065f46;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #a7f3d0;
    white-space: nowrap;
    max-width: 100%;
}

.wallet-pill strong {
    font-weight: 800;
}

.wallet-pill:hover {
    background: #d1fae5;
}

.topup-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    border: 0;
    cursor: pointer;
}

.topup-mini:hover {
    background: #000000;
}

/* Footer */
.footer {
    background: var(--navy-2);
    color: #cbd5e1;
    padding: 14px 0;
    margin-top: 20px;
}

/* Public mobile bottom nav */
.mobile-bottom-nav {
    display: none;
}

/* Client mobile bottom nav */
.client-bottom-nav {
    display: none;
}

/* Homepage redesign support */
.sb-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 34%),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.15), transparent 30%),
        linear-gradient(135deg, #f8fafc 0%, #eef6ff 55%, #ffffff 100%);
}

.sb-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 42px;
    align-items: center;
}

.sb-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #ffffff;
    color: #2563eb;
    border: 1px solid #dbeafe;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.08);
}

.sb-badge span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.15);
}

.sb-hero h1 {
    margin: 22px 0 18px;
    max-width: 760px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: #0f172a;
}

.sb-hero p {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.75;
    color: #475569;
}

.sb-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.sb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid transparent;
}

.sb-btn-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.25);
}

.sb-btn-primary:hover {
    background: #1d4ed8;
}

.sb-btn-light {
    background: #ffffff;
    color: #0f172a;
    border-color: #e2e8f0;
}

.sb-btn-light:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.sb-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.sb-trust-row div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.sb-trust-row strong,
.sb-trust-row span {
    display: block;
}

.sb-trust-row strong {
    color: #0f172a;
    font-size: 15px;
}

.sb-trust-row span {
    margin-top: 5px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
}

.sb-hero-card {
    padding: 22px;
    border-radius: 36px;
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
}

.sb-logo-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sb-logo-card img {
    width: 64px;
    height: 64px;
}

.sb-logo-card strong,
.sb-logo-card span {
    display: block;
}

.sb-logo-card strong {
    font-size: 24px;
}

.sb-logo-card span {
    color: #cbd5e1;
}

.sb-dashboard-preview {
    margin-top: 18px;
    padding: 20px;
    border-radius: 28px;
    background: #ffffff;
    color: #0f172a;
}

.sb-preview-header,
.sb-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sb-preview-header {
    margin-bottom: 22px;
}

.sb-preview-header span {
    color: #64748b;
    font-weight: 800;
}

.sb-preview-header b {
    padding: 6px 10px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 12px;
}

.sb-metric {
    margin-top: 16px;
}

.sb-metric span {
    color: #475569;
    font-weight: 700;
}

.sb-metric strong {
    color: #0f172a;
}

.sb-progress {
    height: 10px;
    margin-top: 8px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.sb-progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #22c55e);
}

.sb-dashboard-link {
    display: flex;
    justify-content: center;
    margin-top: 22px;
    padding: 13px;
    border-radius: 16px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 900;
    text-decoration: none;
}

.sb-services-section,
.sb-how-section,
.sb-cta-section {
    padding: 68px 0;
}

.sb-section-heading {
    max-width: 720px;
    margin-bottom: 30px;
}

.sb-section-heading span,
.sb-small-title {
    color: #2563eb;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.sb-section-heading h2,
.sb-how-grid h2,
.sb-cta-box h2 {
    margin: 10px 0;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.sb-section-heading p,
.sb-how-grid p,
.sb-cta-box p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.sb-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sb-service-card {
    padding: 24px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.sb-service-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 900;
    margin-bottom: 18px;
}

.sb-service-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 20px;
}

.sb-service-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.sb-how-section {
    background: #f8fafc;
}

.sb-how-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 32px;
    align-items: start;
}

.sb-steps {
    display: grid;
    gap: 14px;
}

.sb-steps div {
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
}

.sb-steps b {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #0f172a;
    color: #ffffff;
}

.sb-steps strong {
    color: #0f172a;
    font-size: 18px;
}

.sb-steps span {
    color: #64748b;
    line-height: 1.55;
}

.sb-cta-box {
    text-align: center;
    padding: 46px 24px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.20), transparent 32%),
        linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #ffffff;
}

.sb-cta-box img {
    width: min(340px, 80%);
    height: auto;
    margin-bottom: 18px;
    background: #ffffff;
    border-radius: 18px;
    padding: 8px 14px;
}

.sb-cta-box h2 {
    color: #ffffff;
}

.sb-cta-box p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: #cbd5e1;
}

/* Tablet */
@media (max-width: 960px) {
    .hero-grid,
    .sb-hero-grid,
    .sb-how-grid {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .grid-4,
    .sb-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sb-trust-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container {
        width: min(100% - 24px, 1120px);
    }

    .navlinks {
        display: none;
    }

    .topbar {
        position: sticky;
        top: 0;
        z-index: 80;
        background: rgba(255, 255, 255, 0.94);
        color: var(--text);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .topbar .nav {
        justify-content: center;
        padding: 12px 0;
    }

    .topbar .brand img {
        height: 38px !important;
        max-width: 180px;
    }

    .hero {
        padding: 46px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section {
        padding: 44px 0;
    }

    .top-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .top-actions .btn {
        width: 100%;
    }

    .app-shell {
        display: block;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        padding-bottom: 40px;
    }

    .sidebar {
        display: none !important;
    }

    .main {
        width: 100% !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        padding: 14px 12px 20px;
        overflow-x: hidden;
    }

    .client-topbar {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        align-items: flex-start;
        flex-direction: column;
    }

    .wallet-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .wallet-pill,
    .topup-mini {
        min-width: 0;
        width: 100%;
        justify-content: center;
        overflow: hidden;
    }

    .wallet-pill span,
    .wallet-pill strong {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .table-responsive,
    .responsive-table,
    .table-scroll {
        border-radius: 16px;
    }

    .mobile-bottom-nav {
    	position: fixed;
		left: 0;
	    right: 0;
	    bottom: calc(0px + env(safe-area-inset-bottom));
	    z-index: 99999;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;

    padding: 10px;

    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);

    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: #cbd5e1;

    font-size: 11px;
    font-weight: 700;

    min-height: 40px;
}

.mobile-bottom-nav a span {
    font-size: 18px;
}

.mobile-bottom-nav a.active {
    background: #2563eb;
    color: #ffffff;
}
    .footer {
        padding-bottom: 26px;
    }

    .sb-hero {
        padding: 46px 0 38px;
    }

    .sb-service-grid {
        grid-template-columns: 1fr;
    }

    .sb-hero-actions .sb-btn {
        width: 100%;
    }

    .sb-hero-card {
        border-radius: 26px;
        padding: 16px;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .brand-name {
        font-size: 16px;
    }

    .topbar-actions {
        gap: 8px;
    }
}

/* Small phones */
@media (max-width: 420px) {
    .card {
        padding: 18px;
        border-radius: 18px;
    }

    .wallet-actions {
        grid-template-columns: 1fr;
    }

    .mobile-bottom-nav,
    .client-bottom-nav {
        left: 0px;
        right: 0px;
        bottom: 0px;
        border-radius: 0px;
    }

    .mobile-bottom-nav a,
    .client-bottom-nav a {
        min-height: 40px;
        font-size: 11px;
    }

    .mobile-bottom-nav a span,
    .client-bottom-nav a span {
        font-size: 12px;
    }

	}
.public-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand img {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
}

/* RIGHT SIDE ACTIONS */
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LOGIN BUTTON (HIGH CONTRAST CTA) */
.login-btn {
    background: #2563eb;
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.login-btn:hover {
    background: #1d4ed8;
}

.auth-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.auth-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.auth-brand img {
    height: 42px;
    width: auto;
}

.auth-brand span {
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
}

.gateway-admin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gateway-card {
    padding: 15px;
    border-radius: 10px;
    background: #1f2937;
    color: #fff;
    text-align: center;
    transition: 0.2s;
}

.gateway-card.inactive {
    opacity: 0.4;
    filter: grayscale(1);
}

.gateway-name {
    font-weight: bold;
    margin-bottom: 10px;
}

.gateway-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.gateway-badge.active {
    background: #16a34a;
}

.gateway-badge.inactive {
    background: #dc2626;
}
}