/* Premium Forest Green & Gold Palette with Clean Glassmorphic Styling */
:root {
    --deep-green: #0b6623;
    --deep-green-hover: #084e1b;
    --gold-accent: #d4af37;
    --gold-hover: #b8912e;
    --light-bg: #f8faf9;
    --border-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-shadow: 0 8px 32px 0 rgba(11, 102, 35, 0.05);
}

@keyframes skb-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.skb-spin-icon {
    display: inline-block !important;
    animation: skb-spin 0.8s linear infinite !important;
}

/* Base Text & Scoped Containers styling */
.sp-platform-scscoped {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #2d3748;
}

/* Eliminate underline text-decorations globally */
.sp-platform-scscoped a,
.sp-platform-scscoped a:hover,
.sp-platform-scscoped a:focus,
.sp-platform-scscoped a:active,
.sp-platform-scscoped button,
.sp-platform-scscoped .btn,
.sp-platform-scscoped .nav-link,
.sp-platform-scscoped .toggle-section,
.sp-platform-scscoped .list-group-item,
.skb-auth-container a,
.skb-auth-container a:hover {
    text-decoration: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.text-deep-green {
    color: var(--deep-green) !important;
}

.bg-deep-green {
    background-color: var(--deep-green) !important;
}

/* Beautiful Custom Buttons */
.btn-deep-green {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--deep-green-hover) 100%);
    color: #ffffff !important;
    border: none;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(11, 102, 35, 0.15);
}

.btn-deep-green:hover, .btn-deep-green:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(11, 102, 35, 0.25);
    filter: brightness(1.1);
}

.btn-outline-success {
    color: var(--deep-green);
    border-color: var(--deep-green);
    font-weight: 600;
    border-radius: 8px;
}

.btn-outline-success:hover, .btn-outline-success:focus {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--deep-green-hover) 100%);
    border-color: var(--deep-green);
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Premium Gradient Profile Header */
.sp-platform-scscoped .row.align-items-center.bg-white {
    background: linear-gradient(135deg, #ffffff 0%, #f4fcf6 100%) !important;
    border-left: 5px solid var(--deep-green) !important;
    border-right: 5px solid var(--deep-green) !important;
    border-radius: 12px !important;
    box-shadow: var(--glass-shadow) !important;
    border: 1px solid var(--border-color);
}

/* Modern Dashboard Cards & Sidebars */
.list-group.shadow-sm.rounded-3 {
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.list-group-item-action {
    font-weight: 550;
    color: #4a5568;
    padding: 0.8rem 1.25rem;
    transition: all 0.2s ease;
}

.list-group-item-action.active {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--deep-green-hover) 100%) !important;
    box-shadow: 0 4px 12px rgba(11, 102, 35, 0.15);
}

.list-group-item-action:hover:not(.active) {
    background-color: #f0f7f2 !important;
    color: var(--deep-green);
    padding-left: 1.5rem;
}

/* Service Card Horizontal Layout Grid */
.service-horizontal-card, #tab-personal-page .card, #tab-services .card {
    background: var(--glass-bg);
    border: 2px solid green !important;
    border-radius: 8px !important;
    padding: 1.15rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    min-height: 120px;
}

.card, .skb-dashboard-card {
    border: 2px solid green !important;
    border-radius: 8px !important;
}

.service-horizontal-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 25px rgba(11, 102, 35, 0.08);
    border-color: var(--deep-green);
    background: #ffffff;
}

/* Scoped Service Icon Badge (Left Area of Horizontal Card) */
.service-icon-area {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    color: var(--deep-green);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-horizontal-card:hover .service-icon-area {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--deep-green-hover) 100%);
    color: #ffffff;
    border-color: var(--deep-green);
    transform: rotate(5deg);
}

/* Soft Pulsing Glowing Active Badges */
.pulsing-active-badge {
    background-color: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pulsing-active-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: badge-pulse 1.6s infinite;
}

@keyframes badge-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Inactive glowing status badge */
.soft-inactive-badge {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.soft-inactive-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ef4444;
}

/* Nested/Collapsible Tables Details Styling */
.skb-table-collapsed {
    background-color: #fcfdfe;
}

.skb-table-container table tbody tr.skb-table-collapsed.d-none,
.table-responsive table tbody tr.skb-table-collapsed.d-none,
.skb-table-container table tbody tr.d-none,
.table-responsive table tbody tr.d-none {
    display: none !important;
}

.skb-plus-btn {
    cursor: pointer;
    font-size: 1.15rem;
    color: var(--deep-green);
    font-weight: bold;
    transition: transform 0.2s ease;
}

.skb-plus-btn:hover {
    transform: scale(1.2);
}

/* Notification Bell Indicator */
.skb-bell-wrapper {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.skb-bell-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
}

.skb-bell-badge {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    font-size: 0.65rem !important;
    padding: 3px 6px !important;
    border-radius: 50% !important;
    background-color: #ff0000 !important; /* Pure Red Background */
    color: #ffffff !important; /* White text counter */
    font-weight: bold !important;
    line-height: 1 !important;
    display: inline-block !important;
}

/* Print Specific Overrides - Targets active outcome card directly to fix printer display issues */
@media print {
    body * {
        visibility: hidden !important;
    }
    /* Only allow the verification outcome card and its internal elements to be visible */
    .skb-result-card, .skb-result-card * {
        visibility: visible !important;
    }
    .skb-result-card {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    /* Hide close and download/print buttons on printout */
    .d-print-none, .btn, .btn-close, .skb-result-card .d-flex.gap-2, button, a {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Horizontal & Vertical Alignment and Full-Width Fit for Tables */
.skb-table-container {
    width: 100%;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100% !important;
    table-layout: auto !important;
    margin-bottom: 0 !important;
}

/* Centered Mobile-Friendly Success/Error Message Pop-ups (Beautiful Blur Overlay) */
.skb-toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.55) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    z-index: 100098 !important;
    transition: opacity 0.3s ease;
}

.skb-toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100099 !important; /* Extra high level above all modals and preview overlays */
    width: 320px !important;
    max-width: 320px !important;
    pointer-events: none;
}

.skb-toast {
    pointer-events: auto;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35) !important;
    padding: 24px !important;
    text-align: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    height: auto !important;
    min-height: 250px !important;
    max-height: 380px !important;
    width: 320px !important;
    max-width: 320px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: skb-toast-zoom-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Beautiful Vertical Left Indicator Accent Bars */
.skb-toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: var(--deep-green) !important;
}

.skb-toast.skb-toast-error::before {
    background: #ef4444 !important;
}

.skb-toast.skb-toast-warning::before {
    background: #f59e0b !important;
}

.skb-toast.skb-toast-info::before {
    background: #3b82f6 !important;
}

.skb-toast .toast-header {
    justify-content: center;
    font-weight: bold;
}

.skb-toast .toast-body {
    padding: 0 !important;
    width: 100% !important;
}

/* Icon pulsing animations */
.skb-toast-icon-pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin-bottom: 16px;
    position: relative;
}

.skb-toast-success-icon {
    background-color: #ecfdf5 !important;
    animation: skb-success-icon-pulse 2s infinite ease-in-out;
}

.skb-toast-error-icon {
    background-color: #fef2f2 !important;
    animation: skb-error-icon-pulse 2s infinite ease-in-out;
}

.skb-toast-warning-icon {
    background-color: #fffbeb !important;
    animation: skb-warning-icon-pulse 2s infinite ease-in-out;
}

.skb-toast-info-icon {
    background-color: #eff6ff !important;
    animation: skb-info-icon-pulse 2s infinite ease-in-out;
}

@keyframes skb-toast-zoom-in {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes skb-success-icon-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes skb-error-icon-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes skb-warning-icon-pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

@keyframes skb-info-icon-pulse {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* Premium Virtual Account Card with Clipboard Copy Icon */
.skb-virtual-account-header-card {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--deep-green-hover) 100%);
    color: #ffffff !important;
    border-radius: 14px;
    padding: 1.35rem 1.6rem;
    box-shadow: 0 12px 24px rgba(11, 102, 35, 0.15);
    border: none;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.skb-virtual-account-header-card, .skb-virtual-account-header-card * {
    color: #ffffff !important;
}

.skb-virtual-account-number-bubble {
    font-size: 10px !important;
}

.skb-virtual-account-header-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.skb-copy-btn {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 10px !important;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.skb-copy-btn:hover {
    background: #ffffff;
    color: var(--deep-green-hover);
    transform: scale(1.03);
}

/* Profile Picture Layout styles */
.skb-profile-img-wrap {
    position: relative;
    display: inline-block;
}

.skb-profile-avatar {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--deep-green);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Scoped Landing Page & Theme Compatibility overrides */
.sp-platform-scscoped .card {
    background-color: #ffffff !important;
    background: #ffffff !important;
    color: #2d3748 !important;
    border: 2px solid var(--border-color) !important;
}

/* Insufficient Balance List & Modal Responsiveness */
.skb-insufficient-list .skb-insufficient-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 3px 0 !important;
}

.skb-insufficient-list .skb-insufficient-label {
    font-weight: 700 !important;
    color: #4a5568 !important;
    margin-right: 10px !important;
}

.skb-insufficient-list .skb-insufficient-val {
    text-align: right !important;
    word-break: break-word !important;
}

.sp-platform-scscoped .card.skb-top-vbank-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f4fcf6 100%) !important;
    color: #0b6623 !important;
    border: 1px solid var(--border-color) !important;
    border-left: 5px solid #0b6623 !important;
    border-right: 5px solid #0b6623 !important;
    border-radius: 12px !important;
    box-shadow: var(--glass-shadow) !important;
    margin-bottom: 1.25rem !important;
}

.sp-platform-scscoped .card.skb-top-vbank-banner span,
.sp-platform-scscoped .card.skb-top-vbank-banner i {
    color: #0b6623 !important;
}

.sp-platform-scscoped .card.skb-top-vbank-banner svg.skb-piggy-bank-svg,
.sp-platform-scscoped .card.skb-top-vbank-banner svg.bi-bank {
    vertical-align: middle !important;
    align-self: center !important;
    display: inline-block;
}

@keyframes skbPiggyBubbleFloat {
    0% {
        opacity: 0.2;
        transform: translateY(0) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-2.5px) scale(1.15);
    }
    100% {
        opacity: 0.2;
        transform: translateY(-5px) scale(0.8);
    }
}

.skb-piggy-bubble {
    animation: skbPiggyBubbleFloat 1.8s infinite ease-in-out;
    transform-origin: center;
}
.skb-piggy-bubble-1 {
    animation-delay: 0s;
}
.skb-piggy-bubble-2 {
    animation-delay: 0.6s;
}
.skb-piggy-bubble-3 {
    animation-delay: 1.2s;
}

@media (max-width: 575.98px) {
    .sp-platform-scscoped .card.skb-top-vbank-banner .skb-vbank-text {
        font-size: 0.68rem !important;
    }
    .sp-platform-scscoped .card.skb-top-vbank-banner .skb-vbank-transfer-btn {
        font-size: 0.65rem !important;
        padding: 3px 8px !important;
    }
}

.sp-platform-scscoped h1, .sp-platform-scscoped h2, .sp-platform-scscoped h3, .sp-platform-scscoped h4, .sp-platform-scscoped h5, .sp-platform-scscoped h6 {
    color: #1a202c !important;
}

.sp-platform-scscoped .text-white {
    color: #ffffff !important;
}

.sp-platform-scscoped p {
    color: #4a5568 !important;
}

.sp-platform-scscoped .text-muted {
    color: #718096 !important;
}

/* Compact, Beautiful, and Non-Breaking Traditional Tables on Desktop */
@media (min-width: 768px) {
    .skb-table-container, .table-responsive {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        margin-bottom: 1.5rem !important;
        background: #ffffff !important;
    }

    .skb-table-container table, .table-responsive table {
        width: 100% !important;
        table-layout: auto !important;
        max-width: none !important;
        border-collapse: collapse !important;
    }

    .skb-table-container th,
    .skb-table-container td,
    .table-responsive th,
    .table-responsive td {
        font-size: 11px !important; /* compact, professional font-size */
        white-space: nowrap !important; /* prevent text wrapping, fit on a single line */
        vertical-align: middle !important;
        padding: 10px 14px !important; /* beautifully padded */
        line-height: 1.4 !important;
        text-align: left !important;
    }

    .skb-table-container table thead,
    .table-responsive table thead {
        display: table-header-group !important; /* always visible */
        background-color: #f8fafc !important;
    }

    .skb-table-container table tbody tr:not(.skb-table-collapsed),
    .table-responsive table tbody tr:not(.skb-table-collapsed) {
        display: table-row !important;
    }

    .skb-table-container table tbody tr.skb-table-collapsed,
    .table-responsive table tbody tr.skb-table-collapsed {
        display: table-row !important;
    }

    .skb-table-container table tbody tr.skb-table-collapsed.d-none,
    .table-responsive table tbody tr.skb-table-collapsed.d-none {
        display: none !important;
    }

    .skb-table-container table tbody td,
    .table-responsive table tbody td {
        display: table-cell !important;
    }
}

/* Beautiful Mobile Responsive Table Styling - Stacked card layout with reduced font size */
@media (max-width: 767.98px) {
    .skb-table-container, .table-responsive {
        border: none !important;
        overflow-x: visible !important;
        background: transparent !important;
    }

    .skb-table-container table, .table-responsive table {
        border: none !important;
        width: 100% !important;
    }

    .skb-table-container table thead, .table-responsive table thead {
        display: none !important; /* Hide header labels on mobile for clean vertical alignment */
    }

    .skb-table-container table tbody, .table-responsive table tbody {
        display: block !important;
        width: 100% !important;
    }

    .skb-table-container table tbody tr:not(.skb-table-collapsed):not(.d-none),
    .table-responsive table tbody tr:not(.skb-table-collapsed):not(.d-none) {
        display: block !important;
        background: #fdfdfd !important;
        border: 1px solid #e9ecef !important;
        border-radius: 12px !important;
        margin-bottom: 15px !important;
        padding: 12px !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.02) !important;
        width: 100% !important;
    }

    .skb-table-container table tbody tr.skb-table-collapsed:not(.d-none),
    .table-responsive table tbody tr.skb-table-collapsed:not(.d-none) {
        display: block !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin-top: -10px !important;
        margin-bottom: 15px !important;
        width: 100% !important;
    }

    .skb-table-container table tbody tr.d-none,
    .table-responsive table tbody tr.d-none,
    .skb-table-container table tbody tr.skb-table-collapsed.d-none,
    .table-responsive table tbody tr.skb-table-collapsed.d-none {
        display: none !important;
    }

    .skb-table-container table tbody tr.skb-table-collapsed td,
    .table-responsive table tbody tr.skb-table-collapsed td {
        display: block !important;
        padding: 0 !important;
        border: none !important;
        width: 100% !important;
    }

    .skb-table-container table tbody td,
    .table-responsive table tbody td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 8px 4px !important;
        border: none !important;
        border-bottom: 1px dashed #f1f3f5 !important;
        font-size: 11px !important; /* reduced font-size on mobile too */
        white-space: normal !important; /* allow content wrap inside card cells */
        width: 100% !important;
    }

    .skb-table-container table tbody td:last-child,
    .table-responsive table tbody td:last-child {
        border-bottom: none !important;
    }

    /* Add dynamic labels on mobile */
    .skb-table-container table tbody td::before,
    .table-responsive table tbody td::before {
        content: attr(data-label) !important;
        display: inline-block !important;
        font-weight: 700 !important;
        color: var(--deep-green) !important;
        text-transform: uppercase !important;
        font-size: 10px !important; /* smaller label size on mobile */
        margin-right: 15px !important;
    }

    /* Centered badge text and bold styling for status badges across viewports */
    .badge,
    .skb-table-container table tbody td .badge,
    .table-responsive table tbody td .badge,
    .sp-api-mobile-table td .badge {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        font-weight: 700 !important;
        vertical-align: middle !important;
    }

    /* Force white text for Pending & Suspended warning badges across viewports */
    .badge.bg-warning,
    .badge.bg-warning.text-white,
    .badge.bg-warning.text-dark,
    .badge.bg-warning[data-status="suspended"],
    .skb-sub-status-val-suspended {
        color: #ffffff !important;
    }

    /* Deep warning background for Suspended status badge */
    .badge.bg-suspended,
    .badge.skb-badge-suspended,
    .skb-sub-status-val-suspended {
        background-color: #d97706 !important;
        color: #ffffff !important;
    }

    /* When no data-label is present, center alignment */
    .skb-table-container table tbody td:not([data-label])::before,
    .table-responsive table tbody td:not([data-label])::before {
        display: none !important;
    }

    .skb-table-container table tbody td:not([data-label]),
    .table-responsive table tbody td:not([data-label]) {
        justify-content: center !important;
        width: 100% !important;
    }
}

/* Responsive adjustments for Verification Outcome Modal on mobile */
@media (max-width: 768px) {
    #skb-verification-popup-modal .modal-dialog,
    #skb-api-result-popup-modal .modal-dialog {
        margin: 0.5rem !important;
        max-width: calc(100% - 1rem) !important;
    }
    #skb-verification-popup-modal .modal-content,
    #skb-api-result-popup-modal .modal-content {
        border-radius: 12px !important;
        border-width: 2px !important;
    }
    #skb-verification-popup-modal .modal-body,
    #skb-api-result-popup-modal .modal-body {
        padding: 12px !important;
    }
    .skb-result-card {
        padding: 12px !important;
        margin-top: 10px !important;
        border-radius: 8px !important;
    }
    .skb-result-card h4 {
        font-size: 1.05rem !important;
    }
    .skb-result-card p {
        font-size: 0.75rem !important;
    }
    .slip-document-container {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        padding: 4px !important;
    }
    .slip-document-container object,
    .slip-document-container embed {
        height: 200px !important;
    }
    .slip-document-container img {
        max-height: 180px !important;
        width: 100% !important;
        object-fit: contain !important;
    }

    /* Compact, clean, and non-breaking table inside result outcome cards */
    .skb-result-card table {
        font-size: 0.8rem !important;
        width: 100% !important;
        table-layout: fixed !important;
    }
    .skb-result-card th {
        width: 40% !important;
        padding: 6px 2px !important;
        font-size: 0.75rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .skb-result-card td {
        padding: 6px 2px !important;
        font-size: 0.75rem !important;
        word-break: break-all !important;
        white-space: normal !important;
    }
    .skb-result-card .row {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
    .skb-result-card .col-md-3 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}

/* Force modal title inside scoped platform to be white and highly visible */
.sp-platform-scscoped .modal-title,
.sp-platform-scscoped .modal-title * {
    color: #ffffff !important;
}

#skb-notif-modal .modal-header .modal-title,
#skb-notif-modal .modal-title {
    text-align: left !important;
    justify-content: flex-start !important;
    margin-right: auto !important;
    float: left !important;
}

/* Guarantee that hidden paginated table rows are ALWAYS hidden and not overridden by table layout queries */
body tr.d-none,
body table tbody tr.d-none,
body .skb-table-container table tbody tr.d-none,
body .table-responsive table tbody tr.d-none,
body .skb-table-container table tbody tr.skb-table-collapsed.d-none,
body .table-responsive table tbody tr.skb-table-collapsed.d-none,
body .sp-api-mobile-table tr.d-none,
body #skb-admin-notifs-table-wrapper tr.d-none,
.skb-paginated-table tr.d-none,
.skb-paginated-table tbody tr.d-none,
.skb-paginated-table .d-none,
tr.d-none {
    display: none !important;
}

/* Ensure collapsible table rows are hidden by default and not overridden by high-specificity table display rules */
body .skb-table-container table tbody tr.collapse:not(.show),
body .table-responsive table tbody tr.collapse:not(.show),
.skb-table-container table tbody tr.collapse:not(.show),
.table-responsive table tbody tr.collapse:not(.show) {
    display: none !important;
}

/* Premium Modern UI for Custom Service Forms */
.skb-service-form {
    padding: 10px;
}

.skb-service-form .form-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    margin-bottom: 6px !important;
    display: inline-block;
}

.skb-service-form input[type="text"],
.skb-service-form input[type="number"],
.skb-service-form input[type="tel"],
.skb-service-form input[type="email"],
.skb-service-form input[type="password"],
.skb-service-form input[type="date"],
.skb-service-form select {
    background-color: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
    color: #0f172a !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02) !important;
    height: auto !important;
    white-space: normal !important;
}

.skb-service-form input[type="text"]:focus,
.skb-service-form input[type="number"]:focus,
.skb-service-form input[type="tel"]:focus,
.skb-service-form input[type="email"]:focus,
.skb-service-form input[type="password"]:focus,
.skb-service-form input[type="date"]:focus,
.skb-service-form select:focus {
    background-color: #ffffff !important;
    border-color: #0b6623 !important;
    box-shadow: 0 0 0 4px rgba(11, 102, 35, 0.15), inset 0 1px 2px rgba(0,0,0,0.02) !important;
    outline: none !important;
}

/* Unified Exact 100% Identical Styling for Modification Email & Password Fields */
.skb-service-form .skb-mod-email-input,
.skb-service-form .skb-mod-password-input,
.skb-mod-email-input,
.skb-mod-password-input {
    background-color: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
    font-family: inherit !important;
    color: #0f172a !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    box-sizing: border-box !important;
    line-height: 1.4 !important;
    width: 100% !important;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02) !important;
    transition: all 0.2s ease-in-out !important;
}

.skb-send-mod-otp-btn {
    height: 38px !important;
    min-height: 38px !important;
    line-height: 1.2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.8rem !important;
}

.skb-service-form .skb-mod-password-input,
.skb-mod-password-input {
    padding-right: 38px !important;
}

/* Explicit Placeholder Styling so placeholder font size is 100% identical and never too big */
.skb-mod-email-input::placeholder,
.skb-mod-password-input::placeholder,
.skb-mod-email-input::-webkit-input-placeholder,
.skb-mod-password-input::-webkit-input-placeholder,
.skb-mod-email-input::-moz-placeholder,
.skb-mod-password-input::-moz-placeholder,
.skb-mod-email-input:-ms-input-placeholder,
.skb-mod-password-input:-ms-input-placeholder {
    font-size: 13px !important;
    color: #94a3b8 !important;
    font-weight: 400 !important;
    opacity: 1 !important;
    line-height: 1.4 !important;
}

.skb-mod-email-input:focus,
.skb-mod-password-input:focus {
    background-color: #ffffff !important;
    border-color: #0b6623 !important;
    box-shadow: 0 0 0 4px rgba(11, 102, 35, 0.15), inset 0 1px 2px rgba(0,0,0,0.02) !important;
    outline: none !important;
}

.skb-service-form input[type="file"] {
    background-color: #f8fafc !important;
    border: 1.5px dashed #cbd5e1 !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;
    font-size: 13px !important;
    color: #475569 !important;
    cursor: pointer !important;
    transition: all 0.2s ease-in-out !important;
}

.skb-service-form input[type="file"]:hover {
    background-color: #f1f5f9 !important;
    border-color: #0b6623 !important;
}

.skb-service-form button[type="submit"] {
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 4px 6px -1px rgba(11, 102, 35, 0.2), 0 2px 4px -1px rgba(11, 102, 35, 0.1) !important;
}

.skb-service-form button[type="submit"]:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 15px -3px rgba(11, 102, 35, 0.3), 0 4px 6px -2px rgba(11, 102, 35, 0.15) !important;
}

/* Custom Responsive Field Builder & Conditioner Logic Mobile Styling overrides */
@media (max-width: 767.98px) {
    .field-row {
        background: #fdfdfd !important;
        padding: 10px !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        margin-bottom: 12px !important;
    }
    .field-row input, .field-row select {
        font-size: 11px !important;
        height: auto !important;
        padding: 6px 10px !important;
    }
    .skb-cond-fields-wrap {
        padding: 8px !important;
        margin-top: 6px !important;
    }
    .skb-cond-fields-wrap input, .skb-cond-fields-wrap select {
        font-size: 11px !important;
        padding: 4px 6px !important;
    }
}

/* Explicit Left Alignment for frontend feedback and submission details card content */
.skb-table-collapsed,
.skb-table-collapsed * {
    text-align: left !important;
}
.skb-table-collapsed .text-start,
.skb-table-collapsed .list-unstyled,
.skb-table-collapsed li,
.skb-table-collapsed strong,
.skb-table-collapsed span,
.skb-table-collapsed div,
.skb-table-collapsed p,
.skb-table-collapsed center {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}
.skb-table-collapsed .d-flex {
    justify-content: flex-start !important;
}
.skb-table-collapsed center,
.skb-table-collapsed .text-center,
.skb-table-collapsed [style*="text-align: center"],
.skb-table-collapsed [style*="text-align:center"] {
    text-align: left !important;
    display: inline-block !important;
}

/* Arrange the submission details horizontally on mobile devices */
@media (max-width: 767px) {
    .skb-table-collapsed ul.list-unstyled li {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: baseline !important;
    }
    .skb-table-collapsed ul.list-unstyled li strong {
        width: auto !important;
        margin-right: 5px !important;
        display: inline-block !important;
    }
    .skb-table-collapsed ul.list-unstyled li span {
        display: inline-block !important;
    }
}

/* Service Card Open Icon heartbeat animation styling */
.skb-open-icon-heartbeat {
    display: inline-block;
    animation: skb-heartbeat 1.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes skb-heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.18);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.18);
    }
    70% {
        transform: scale(1);
    }
}

/* Ensure decoded verification log key/value boxes never overflow their container or run off-box */
.skb-decoded-grid-col {
    word-break: break-all !important;
    overflow-wrap: break-word !important;
}

.skb-decoded-grid-col span {
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
}

/* Exactly three key-value boxes per row on window/desktop devices, with dynamic width justified by value/key */
@media (min-width: 768px) {
    .skb-decoded-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
    }
    .skb-decoded-grid-col {
        flex: 0 1 auto !important;
        width: auto !important;
        max-width: 100% !important;
        min-width: 160px !important;
    }
    .skb-decoded-grid-col > div {
        height: auto !important;
        min-height: unset !important;
        display: inline-block !important;
        width: 100% !important;
    }
}

/* Ensure the photo box and the image are at the center of the grid container */
.skb-decoded-grid-img-col {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    float: none !important;
    width: 100% !important;
    margin: 0 auto 15px auto !important;
    text-align: center !important;
}

.skb-decoded-grid-img-col > div {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
}

/* Prevent narrow cards in horizontal log slider from squishing on desktop windows */
.flex-shrink-0 .skb-decoded-grid-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

/* Beautiful 5-column grid layout for dispatch notification metrics */
@media (min-width: 768px) {
    .col-md-2-4 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

/* Responsive adjustments for submission details lists on mobile viewports */
@media (max-width: 767.98px) {
    .skb-submission-details-list li {
        display: block !important;
        width: 100% !important;
        margin-bottom: 8px !important;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        text-align: left !important;
    }
    .skb-submission-details-list li strong {
        width: auto !important;
        display: inline !important;
        margin-right: 4px !important;
        flex-shrink: none !important;
    }
    .skb-submission-details-list li span {
        display: inline !important;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        text-align: left !important;
    }
}

/* Live Agent Chat Message Container Spacing & Vertical Separation */
#skb-chat-messages-body .d-flex.align-items-end {
    margin-bottom: 1rem !important;
}
#skb-chat-messages-body .d-flex.flex-column {
    gap: 1rem !important;
}

/* Global Suspended Status Badge Styling */
.bg-suspended,
.badge.bg-suspended,
.badge.skb-badge-suspended,
.skb-sub-status-val-suspended {
    background-color: #d97706 !important;
    color: #ffffff !important;
}

/* Service Outcome and Feedback Download Button Adjustments */
.skb-download-outcome-btn,
.skb-modal-download-btn,
.skb-print-verified-data-btn {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    padding: 0.35rem 0.85rem !important;
    height: auto !important;
    max-width: fit-content !important;
    letter-spacing: normal !important;
    border-radius: 6px !important;
}
.skb-download-outcome-btn i,
.skb-modal-download-btn i,
.skb-print-verified-data-btn i {
    font-size: 0.85rem !important;
}

/* Horizontal scrolling view on mobile devices for KatPay Transfer and Paystack payment forms */
@media (max-width: 767.98px) {
    .skb-funding-forms-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px !important;
    }
    .skb-funding-forms-row > div {
        flex: 0 0 90% !important;
        max-width: 90% !important;
        scroll-snap-align: start;
    }
}

/* Perfect alignment and layout fixes for System Notifications table list on mobile devices */
@media (max-width: 767.98px) {
    #skb-admin-notifs-table-wrapper table,
    #skb-admin-notifs-table-wrapper table tbody,
    #skb-admin-notifs-table-wrapper table tbody tr:not(.d-none) {
        display: block !important;
        width: 100% !important;
    }
    #skb-admin-notifs-table-wrapper table tbody tr.d-none {
        display: none !important;
    }
    #skb-admin-notifs-table-wrapper table tbody td {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        padding: 8px 6px !important;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.08) !important;
    }
    #skb-admin-notifs-table-wrapper table tbody td::before {
        display: block !important;
        width: 100% !important;
        margin-bottom: 4px !important;
        font-weight: bold !important;
        color: #0b6623 !important;
        content: attr(data-label) !important;
        text-transform: uppercase !important;
        font-size: 0.725rem !important;
    }
}

/* Explicit absolute left alignment for admin feedback details text blocks */
.skb-admin-feedback-details,
.skb-admin-feedback-details p,
.skb-admin-feedback-details div {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    float: none !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    clear: both !important;
    display: block !important;
    width: 100% !important;
}

.skb-admin-feedback-details * {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    float: none !important;
}

/* Ensure the collapsible details cell always spans full width with standard block flow, never flexbox */
body .skb-table-container table tbody tr.skb-table-collapsed td,
body .table-responsive table tbody tr.skb-table-collapsed td,
body tr.skb-table-collapsed td,
body td.text-start[colspan="5"] {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    clear: both !important;
}

@media (min-width: 768px) {
    body .skb-table-container table tbody tr.skb-table-collapsed td,
    body .table-responsive table tbody tr.skb-table-collapsed td,
    body tr.skb-table-collapsed td,
    body td.text-start[colspan="5"] {
        display: table-cell !important;
        width: auto !important;
    }
}

/* Force absolute left alignment on feedback wrappers and details on all viewports, keeping inline elements natural */
body .skb-feedback-block-wrapper,
body .skb-admin-feedback-details {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    clear: both !important;
    float: none !important;
    margin: 10px 0 0 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Ensure any sub-elements wrap naturally and are left-aligned without breaking inline layout */
body .skb-feedback-block-wrapper *,
body .skb-admin-feedback-details * {
    text-align: left !important;
    float: none !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

/* Ensure the label inline layout with icon is neat and left-aligned */
body .skb-feedback-block-wrapper .text-success {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100% !important;
}

/* Explicitly style all settings and localization form inputs to have highly visible dark text and white background */
#tab-admin-localization input[type="text"],
#tab-admin-localization textarea,
#tab-admin-localization select,
.sp-platform-scscoped input[type="text"],
.sp-platform-scscoped textarea,
.sp-platform-scscoped select {
    color: #1e293b !important;
    background-color: #ffffff !important;
}

/* Logo generator preview container and SVG responsive styling */
#skb-logo-generator-preview {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 auto !important;
}
@media (max-width: 575.98px) {
    #skb-logo-generator-preview {
        max-width: 240px !important;
        height: 60px !important;
        margin: 0 auto !important;
    }
}
#skb-logo-generator-preview svg {
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

.draggable-logo-item {
    cursor: move !important;
    pointer-events: all !important;
}
.draggable-logo-item * {
    pointer-events: all !important;
    cursor: move !important;
}

#tab-api-docs, #tab-admin-api-portal {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}
#tab-api-docs .card, #tab-api-docs .border, #tab-api-docs .p-0,
#tab-admin-api-portal .card, #tab-admin-api-portal .border, #tab-admin-api-portal .p-0 {
    padding: 4px !important;
}

.table-dark,
.table-dark th,
thead.table-dark th,
#tab-admin-api-portal .table-dark th,
#tab-api-docs .table-dark th {
    color: #ffffff !important;
    white-space: nowrap !important;
}
@media (max-width: 767.98px) {
    #tab-api-docs .bg-white, #tab-admin-api-portal .bg-white {
        padding: 6px 2px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    #tab-api-docs .p-3, #tab-admin-api-portal .p-3,
    #tab-api-docs .p-4, #tab-admin-api-portal .p-4 {
        padding: 6px 4px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    /* Enable horizontal scrolling for API Documentation tables on mobile devices */
    #tab-api-docs .table-responsive {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        display: block !important;
    }
    #tab-api-docs .table-responsive table {
        display: table !important;
        width: max-content !important;
        min-width: 100% !important;
        border-collapse: collapse !important;
    }
    #tab-api-docs .table-responsive table thead {
        display: table-header-group !important;
    }
    #tab-api-docs .table-responsive table tbody {
        display: table-row-group !important;
    }
    #tab-api-docs .table-responsive table tr:not(.d-none) {
        display: table-row !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
    }
    #tab-api-docs .table-responsive table tr.d-none {
        display: none !important;
    }
    #tab-api-docs .table-responsive table th,
    #tab-api-docs .table-responsive table td {
        display: table-cell !important;
        padding: 6px 10px !important;
        font-size: 0.725rem !important;
        line-height: 1.35 !important;
        text-align: left !important;
        vertical-align: middle !important;
        white-space: auto !important;
        width: auto !important;
    }
    #tab-api-docs .table-responsive table th:first-child,
    #tab-api-docs .table-responsive table td:first-child,
    #tab-api-docs .table-responsive table td code,
    #tab-api-docs .table-responsive table td .badge {
        white-space: nowrap !important;
    }
    #tab-api-docs .table-responsive table td::before,
    #tab-api-docs .table-responsive table th::before {
        content: none !important;
        display: none !important;
    }

    #tab-admin-api-portal .table-responsive {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    #tab-api-docs .accordion-body, #tab-admin-api-portal .accordion-body {
        padding: 6px 2px !important;
        width: 100% !important;
    }
    #tab-api-docs h4, #tab-admin-api-portal h4 {
        font-size: 0.85rem !important;
        text-align: left !important;
    }
    #tab-api-docs h5, #tab-admin-api-portal h5 {
        font-size: 0.8rem !important;
        text-align: left !important;
    }
    #tab-api-docs h6, #tab-admin-api-portal h6 {
        font-size: 0.725rem !important;
        text-align: left !important;
    }
    #tab-api-docs p, #tab-admin-api-portal p,
    #tab-api-docs li, #tab-admin-api-portal li {
        font-size: 0.7rem !important;
        text-align: left !important;
    }
    #tab-api-docs .badge, #tab-admin-api-portal .badge {
        font-size: 0.62rem !important;
        padding: 2px 5px !important;
        white-space: nowrap !important;
    }
    #tab-api-docs .btn, #tab-admin-api-portal .btn {
        font-size: 0.68rem !important;
        padding: 3px 6px !important;
        white-space: nowrap !important;
    }
    #tab-api-docs pre, #tab-admin-api-portal pre,
    #tab-api-docs code, #tab-admin-api-portal code {
        font-size: 0.68rem !important;
        word-break: break-word !important;
    }
    .sp-api-mobile-table thead {
        display: none !important;
    }
    .sp-api-mobile-table, .sp-api-mobile-table tbody, .sp-api-mobile-table tr:not(.d-none), .sp-api-mobile-table td {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        box-sizing: border-box !important;
        clear: both !important;
        float: none !important;
    }
    .sp-api-mobile-table tr:not(.d-none) {
        margin-bottom: 0.75rem !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 8px !important;
        padding: 6px 8px !important;
        background: #ffffff !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05) !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .sp-api-mobile-table tr.d-none {
        display: none !important;
    }
    .sp-api-mobile-table td {
        border: none !important;
        border-bottom: 1px dashed #e2e8f0 !important;
        padding: 6px 4px !important;
        text-align: left !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.7rem !important;
        line-height: 1.35 !important;
    }
    .sp-api-mobile-table td * {
        max-width: 100% !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }
    .sp-api-mobile-table td code {
        display: inline-block !important;
        word-break: break-all !important;
        overflow-wrap: anywhere !important;
        white-space: normal !important;
        font-size: 0.68rem !important;
        max-width: 100% !important;
        padding: 1px 4px !important;
    }
    .sp-api-mobile-table td .badge {
        font-size: 0.62rem !important;
        padding: 2px 6px !important;
        white-space: nowrap !important;
        display: inline-block !important;
    }
    .sp-api-mobile-table td .btn, .sp-api-mobile-table td .btn-group {
        font-size: 0.65rem !important;
        padding: 3px 6px !important;
        white-space: nowrap !important;
    }
    .sp-api-mobile-table td:last-child {
        border-bottom: none !important;
    }
    .sp-api-mobile-table td[data-label]::before {
        content: attr(data-label);
        display: block !important;
        width: 100% !important;
        font-weight: 800 !important;
        font-size: 0.62rem !important;
        color: #334155 !important;
        text-transform: uppercase !important;
        margin-bottom: 2px !important;
        letter-spacing: 0.3px !important;
        text-align: left !important;
    }
}
