:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #8b5cf6;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #06b6d4;

    --dark: #0f172a;
    --dark-700: #1e293b;
    --dark-600: #334155;
    --dark-500: #475569;
    --light: #e2e8f0;
    --muted: #94a3b8;

    --sidebar-width: 280px;
    --header-height: 78px;

    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-bg-light: rgba(51, 65, 85, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
    --glass-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);

    --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 25%),
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.10), transparent 22%),
        var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.xrp-app {
    min-height: 100vh;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.55);
}
::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.30);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.45);
}

/* Layout */
.sidebar-new {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    border-right: 1px solid rgba(59, 130, 246, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 18px rgba(0, 0, 0, 0.35);
}

.sidebar-new-header,
.sidebar-new-footer {
    padding: 1rem 1rem;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.82);
}

.sidebar-new-header {
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.sidebar-new-footer {
    border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.sidebar-new-content {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
}

.sidebar-new-nav {
    list-style: none;
}

.sidebar-new-section {
    padding: 1rem 1rem 0.7rem;
    margin-top: 0.3rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #64748b;
    text-transform: uppercase;
}

.sidebar-new-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.78rem 0.9rem;
    color: #94a3b8;
    border-radius: 12px;
    transition: all 0.22s ease;
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.sidebar-new-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: height 0.22s ease;
}

.sidebar-new-link:hover {
    background: rgba(59, 130, 246, 0.10);
    color: #e2e8f0;
    transform: translateX(2px);
}

.sidebar-new-link:hover::before {
    height: 70%;
}

.sidebar-new-link.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.20) 0%, rgba(139, 92, 246, 0.20) 100%);
    border: 1px solid rgba(59, 130, 246, 0.28);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.18);
}

.sidebar-new-link.active::before {
    height: 82%;
}

.sidebar-new-link i {
    width: 20px;
    text-align: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.sidebar-new-link .badge {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}

.sidebar-new-link-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(139, 92, 246, 0.18) 100%);
    border: 1px solid rgba(59, 130, 246, 0.36);
    color: #93c5fd;
}

.sidebar-new-link-highlight:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.28) 0%, rgba(139, 92, 246, 0.28) 100%);
}

.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: calc(100% - var(--sidebar-width));
}

.header {
    height: var(--header-height);
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.content-wrapper {
    flex: 1;
}

.footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    background: rgba(15, 23, 42, 0.45);
}

.xrp-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.88rem;
}

/* Brand */
.xrp-brand {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.xrp-brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.28);
}

.xrp-brand-text {
    display: flex;
    flex-direction: column;
}

.xrp-brand-text strong {
    font-size: 1rem;
    line-height: 1.1;
}

.xrp-brand-text span {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* Header */
.xrp-sidebar-toggle {
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.xrp-header-title {
    flex: 1;
    min-width: 0;
}

.xrp-header-title h1 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
}

.xrp-header-title p {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

.xrp-header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* User panel */
.xrp-user-panel {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.xrp-user-panel .avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.xrp-user-meta {
    display: flex;
    flex-direction: column;
}

.xrp-user-meta strong {
    font-size: 0.92rem;
}
.xrp-user-meta span {
    font-size: 0.75rem;
    color: var(--muted);
}

/* Cards */
.glass-card,
.fto-card,
.fto-stat-card,
.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    padding: 1.5rem;
}

.fto-card {
    padding: 1.5rem;
    transition: all 0.22s ease;
}

.fto-card:hover,
.fto-stat-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: var(--glass-shadow-lg);
}

.fto-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fto-card-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.fto-card-body {
    color: rgba(255, 255, 255, 0.92);
}

/* Grid / utility */
.fto-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 1.5rem;
}

.fto-grid {
    display: grid;
    gap: 1.5rem;
}

.fto-grid-cols-1 { grid-template-columns: 1fr; }
.fto-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fto-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fto-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.fto-mt-xl { margin-top: 2rem; }

.fto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: none;
    border-radius: 12px;
    padding: 0.8rem 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fto-btn-sm {
    padding: 0.62rem 0.95rem;
    font-size: 0.88rem;
}

.fto-btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.24);
}

.fto-btn-primary:hover {
    transform: translateY(-1px);
}

.fto-btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fto-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.74rem;
    font-weight: 700;
}

.fto-badge-primary {
    background: rgba(59, 130, 246, 0.18);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.fto-badge-success {
    background: rgba(16, 185, 129, 0.18);
    color: #86efac;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.fto-badge-warning {
    background: rgba(245, 158, 11, 0.18);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.fto-stat-card {
    padding: 1.4rem;
    text-align: center;
    transition: all 0.22s ease;
}

.fto-stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 1.35rem;
}

.fto-stat-value {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    color: white;
}

.fto-stat-label {
    margin-top: 0.45rem;
    font-size: 0.88rem;
    color: var(--muted);
}

/* Hero */
.xrp-hero {
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.xrp-hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -40% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.24), transparent 70%);
    pointer-events: none;
}

.xrp-hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.xrp-hero-kicker {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #93c5fd;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.xrp-hero-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    max-width: 760px;
}

.xrp-hero-text {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.8rem;
    max-width: 720px;
}

.xrp-hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Quick actions */
.xrp-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 120px;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.22s ease;
    color: var(--light);
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.26);
}

.quick-action-btn i {
    font-size: 1.8rem;
    color: #93c5fd;
}

/* List */
.xrp-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.xrp-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.xrp-list-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
    text-align: right;
    font-size: 0.86rem;
    color: #cbd5e1;
}

.xrp-price-value {
    color: #86efac;
    font-weight: 800;
}

/* Status */
.xrp-status-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.xrp-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Legality */
.xrp-legality {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.xrp-legality-legal {
    background: rgba(16, 185, 129, 0.15);
    color: #86efac;
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.xrp-legality-illegal {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.25);
}
.xrp-legality-unknown {
    background: rgba(148, 163, 184, 0.12);
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.xrp-profit-positive {
    color: #86efac;
    font-weight: 700;
    margin-top: 0.25rem;
}

.xrp-profit-negative {
    color: #fca5a5;
    font-weight: 700;
}

/* Activity */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.activity-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-content {
    flex: 1;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-icon.bg-primary { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.stat-icon.bg-success { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.stat-icon.bg-info { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.stat-icon.bg-warning { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.stat-icon.bg-danger { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }

/* Legacy utility classes preserved and adapted */
.lspd-muted {
    color: #94a3b8;
}

.lspd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

.badge-danger {
    border-color: rgba(239,68,68,.35);
    color: #fecaca;
    background: rgba(239,68,68,.12);
}
.badge-warning {
    border-color: rgba(245,158,11,.35);
    color: #fde68a;
    background: rgba(245,158,11,.12);
}
.badge-success {
    border-color: rgba(16,185,129,.35);
    color: #bbf7d0;
    background: rgba(16,185,129,.12);
}
.badge-neutral {
    border-color: rgba(148,163,184,.25);
    color: #e2e8f0;
}

.xrp-empty-state {
    padding: 1rem;
    border-radius: 14px;
    color: #94a3b8;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.12);
}

/* Responsive */
@media (max-width: 1200px) {
    .fto-grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .fto-grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .sidebar-new {
        transform: translateX(-100%);
        transition: transform 0.25s ease;
    }

    .sidebar-new.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .xrp-sidebar-toggle {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
        flex-wrap: wrap;
        height: auto;
    }

    .xrp-header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .fto-grid-cols-2,
    .fto-grid-cols-3,
    .fto-grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .xrp-quick-actions {
        grid-template-columns: 1fr;
    }

    .xrp-list-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .xrp-list-meta {
        justify-content: flex-start;
        text-align: left;
    }

    .fto-container {
        padding: 1rem;
    }

    .xrp-hero {
        padding: 1.4rem;
    }

    .xrp-hero-title {
        font-size: 1.5rem;
    }

    .xrp-footer-inner {
        flex-direction: column;
    }
}

.xrp-auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.xrp-auth-shell {
    width: 100%;
    max-width: 520px;
}

.xrp-auth-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.xrp-auth-brand h1 {
    font-size: 1.5rem;
    margin: 0;
}

.xrp-auth-brand p {
    margin-top: 0.25rem;
    color: var(--muted);
}

.xrp-auth-card {
    padding: 2rem;
}

.xrp-auth-head h2 {
    margin-bottom: 0.4rem;
    font-size: 1.5rem;
}

.xrp-auth-head p {
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.xrp-auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.xrp-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.xrp-form-group label {
    font-weight: 700;
    color: #cbd5e1;
}

.xrp-input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    padding: 0.9rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.xrp-input:focus {
    border-color: rgba(59, 130, 246, 0.65);
    background: rgba(255, 255, 255, 0.07);
}

.xrp-full-width {
    width: 100%;
}

.xrp-auth-links {
    margin-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--muted);
}

.xrp-auth-links a {
    color: #93c5fd;
    font-weight: 700;
}

.xrp-pending-box {
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.10);
    border: 1px solid rgba(59, 130, 246, 0.20);
    color: #dbeafe;
}

.xrp-alert {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid transparent;
}

.xrp-alert-success {
    background: rgba(16, 185, 129, 0.12);
    color: #bbf7d0;
    border-color: rgba(16, 185, 129, 0.25);
}

.xrp-alert-error {
    background: rgba(239, 68, 68, 0.12);
    color: #fecaca;
    border-color: rgba(239, 68, 68, 0.25);
}

.xrp-alert-warning {
    background: rgba(245, 158, 11, 0.12);
    color: #fde68a;
    border-color: rgba(245, 158, 11, 0.25);
}

.xrp-table-wrap {
    overflow-x: auto;
}

.xrp-table {
    width: 100%;
    border-collapse: collapse;
}

.xrp-table th,
.xrp-table td {
    text-align: left;
    padding: 0.9rem 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: middle;
}

.xrp-table th {
    color: #cbd5e1;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.xrp-table-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.xrp-btn-inline {
    border: none;
    border-radius: 10px;
    padding: 0.55rem 0.8rem;
    font-weight: 700;
    cursor: pointer;
    color: white;
}

.xrp-btn-inline-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.xrp-btn-inline-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.xrp-btn-inline-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
}

.xrp-status-pill {
    display: inline-flex;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.xrp-status-pending {
    background: rgba(245, 158, 11, 0.14);
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.xrp-status-active {
    background: rgba(16, 185, 129, 0.14);
    color: #bbf7d0;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.xrp-status-disabled {
    background: rgba(148, 163, 184, 0.14);
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.xrp-status-rejected {
    background: rgba(239, 68, 68, 0.14);
    color: #fecaca;
    border: 1px solid rgba(239, 68, 68, 0.25);
}