:root {
    --bs-primary: #e53935;
}

.material-icons,
.material-icons-outlined,
.material-icons-round,
.material-icons-sharp {
    font-family: 'Material Icons' !important;
    font-weight: normal !important;
    font-style: normal !important;
    display: inline-block !important;
    line-height: 1 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    word-wrap: normal !important;
    white-space: nowrap !important;
    direction: ltr !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Main content */
.admin-main {
    margin-left: 270px;
    min-height: 100vh;
    transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: margin-left;
}

.admin-content {
    padding: 24px 32px;
}

.admin-main .trader-header {
    background: rgba(26, 29, 38, 0.8) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 12px 32px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

.admin-main .trader-header .white-block-title {
    min-width: 320px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0 !important;
}

.admin-main .trader-header .white-block-title span {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.admin-main .trader-header .elem {
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    border-left: 1px solid #222328;
}

.admin-main .trader-header .elem:first-child {
    border-left: none;
}

/* Language selector normalization */
.admin-main .trader-header [role="group"][aria-label="Language"] {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
}

.admin-main .trader-header [role="group"][aria-label="Language"] button {
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #888 !important;
    transition: all 0.2s !important;
}

.admin-main .trader-header [role="group"][aria-label="Language"] button[aria-pressed="true"] {
    background: var(--bs-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.2) !important;
}

/* User Menu normalization */
.admin-main .trader-header .user-menu-button {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    position: relative;
}

.admin-main .trader-header .user-menu-button:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
}

.admin-main .trader-header .user-icon {
    font-size: 20px !important;
    color: #ef4444 !important;
    transition: all 0.3s ease !important;
}

.admin-main .trader-header .user-menu-button:hover .user-icon {
    transform: scale(1.1);
}

.admin-main .trader-header .user-name {
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
}

/* Status Dot Pulse */
@keyframes status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.user-status-dot {
    animation: status-pulse 2s infinite;
}

@media (max-width: 991px) {
    .admin-main .trader-header {
        padding: 12px 16px !important;
    }
}

@media (max-width: 991px) {
    .admin-main {
        margin-left: 0;
    }

    .admin-content {
        padding: 16px 12px;
    }
}

@media (min-width: 992px) and (max-width: 1400px) {
    .admin-main {
        margin-left: 88px !important;
    }
}

/* Utilities */
.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .tablet-hide {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .mobile-hide {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 425px) {
    .admin-content {
        padding: 12px 8px !important;
    }

    .admin-card {
        padding: 16px 12px !important;
        border-radius: 16px !important;
    }

    .white-block.trader-header {
        padding: 8px 12px !important;
        flex-wrap: wrap !important;
    }

    .white-block.trader-header .white-block-title {
        min-width: auto !important;
        flex-basis: 100% !important;
        margin-bottom: 12px !important;
        padding-bottom: 8px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .white-block.trader-header .white-block-title span {
        font-size: 16px !important;
    }

    .white-block.trader-header .elem {
        padding: 0 8px !important;
        border-left: none !important;
    }

    .header-icon-btn {
        width: 32px !important;
        height: 32px !important;
        padding: 0 !important;
    }

    .header-icon-btn svg,
    .header-icon-btn .material-icons {
        font-size: 18px !important;
    }

    .balance-select-button {
        padding: 6px 10px !important;
    }

    #header-balance-main {
        font-size: 13px !important;
    }

    .transaction-card {
        padding: 12px !important;
    }

    .t-card-bank {
        font-size: 13px !important;
    }

    .t-card-value {
        font-size: 12px !important;
    }

    .t-card-label {
        font-size: 9px !important;
    }

    .t-card-txid {
        font-size: 9px !important;
        max-width: 110px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .admin-card-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }

    .admin-card-header h3 {
        font-size: 15px !important;
    }

    .admin-card-header .d-flex {
        width: 100%;
        justify-content: flex-end;
    }

    .balance-select-button div {
        gap: 5px !important;
    }

    .bottom-nav-container {
        max-width: 100%;
    }

    .nav-item .nav-label {
        font-size: 10px !important;
    }

    .nav-item .material-icons {
        font-size: 20px !important;
    }
}

.flex-column {
    flex-direction: column !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-1 {
    flex: 1 !important;
}

.gap-1 {
    gap: 4px !important;
}

.gap-2 {
    gap: 8px !important;
}

.gap-3 {
    gap: 16px !important;
}

.gap-4 {
    gap: 24px !important;
}

.gap-5 {
    gap: 32px !important;
}

.mb-1 {
    margin-bottom: 4px !important;
}

.mb-2 {
    margin-bottom: 8px !important;
}

.mb-3 {
    margin-bottom: 16px !important;
}

.mb-4 {
    margin-bottom: 24px !important;
}

.mb-5 {
    margin-bottom: 32px !important;
}

.mt-1 {
    margin-top: 4px !important;
}

.mt-2 {
    margin-top: 8px !important;
}

.mt-3 {
    margin-top: 16px !important;
}

.mt-4 {
    margin-top: 24px !important;
}

.mt-5 {
    margin-top: 32px !important;
}

.ms-auto {
    margin-left: auto !important;
}

.me-auto {
    margin-right: auto !important;
}

.ms-2 {
    margin-left: 8px !important;
}

.ms-3 {
    margin-left: 16px !important;
}

.ms-4 {
    margin-left: 24px !important;
}

.p-3 {
    padding: 16px !important;
}

.p-4 {
    padding: 24px !important;
}

.w-100 {
    width: 100% !important;
}

.text-center {
    text-align: center !important;
}

.text-end {
    text-align: right !important;
}

.text-muted {
    color: #888 !important;
}

.text-accent {
    color: #e53935 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

/* Base */
body {
    font-family: 'Inter', sans-serif !important;
    background: #0f1117 !important;
    color: #e4e4e7 !important;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 100vh;
    background: #1a1d26;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.admin-sidebar-logo {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-sidebar-logo h2 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #e53935, #e53935);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-sidebar-logo .admin-badge {
    background: rgba(229, 57, 53, 0.15);
    color: #e53935;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.admin-nav {
    padding: 16px 12px;
    flex: 1;
}

.admin-nav-section {
    margin-bottom: 24px;
}

.admin-nav-section-title {
    font-size: 10px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 12px;
    margin-bottom: 8px;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #888;
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    margin-bottom: 2px;
    border: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.admin-nav-item:hover {
    background: rgba(229, 57, 53, 0.08);
    color: #c4d0ff;
}

.admin-nav-item.active {
    background: rgba(229, 57, 53, 0.15);
    color: #e53935;
}

.admin-nav-item .material-icons {
    font-size: 20px;
}

.admin-nav-bottom {
    padding: 16px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-nav-bottom .admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #888;
    font-size: 13px;
}

.admin-nav-bottom .admin-user .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e53935, #b71c1c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

/* Main content */
.admin-main {
    margin-left: 270px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-topbar h1 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.admin-topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-content {
    padding: 24px 32px;
    flex: 1;
}

/* Cards */
.admin-card {
    background: #1a1d26;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-card-header h3,
.admin-card-header h2 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

/* Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
    justify-content: center;
}

.admin-stat-card {
    background: linear-gradient(145deg, #1e222d, #1a1d26);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
}

.admin-stat-card .stat-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e53935;
}

.admin-stat-card .stat-icon .material-icons {
    font-size: 22px;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.admin-stat-card .stat-label {
    font-size: 11px;
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-right: 60px;
}

.admin-stat-card .stat-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #888;
    padding-right: 60px;
}

.admin-stat-card .stat-value {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-top: auto;
}

.admin-stat-card.blue .stat-icon {
    color: #e53935;
    background: rgba(229, 57, 53, 0.1);
}

.admin-stat-card.green .stat-icon {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.admin-stat-card.orange .stat-icon {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.admin-stat-card.red .stat-icon {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Tables */
.admin-table-wrap {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.admin-table {
    width: max-content !important;
    min-width: 100% !important;
    table-layout: auto !important;
    border-collapse: separate !important;
    border-spacing: 0 4px;
}

.cell-truncate {
    max-width: 300px !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap;
}

.admin-table td:first-child,
.admin-table th:first-child,
.cell-txid {
    max-width: none !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

.admin-table thead th {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    white-space: nowrap;
}

.admin-table tbody td,
.admin-table tbody th {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
    color: #d1d5db;
    white-space: nowrap;
}

.admin-table tbody td:first-child,
.admin-table tbody th:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px 0 0 12px;
}

.admin-table tbody td:last-child,
.admin-table tbody th:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 0 12px 12px 0;
}

.admin-table tbody tr:hover td,
.admin-table tbody tr:hover th {
    background: rgba(229, 57, 53, 0.06);
    border-color: rgba(229, 57, 53, 0.15);
    color: #fff;
}

@media (max-width: 991px) {
    .admin-table thead th {
        padding: 12px 14px;
        font-size: 10px;
    }

    .admin-table tbody td,
    .admin-table tbody th {
        padding: 14px 14px;
        font-size: 12px;
    }
}

/* Buttons Upgrade */
.admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    white-space: nowrap;
}

.admin-btn:active {
    transform: scale(0.97);
}

.admin-btn .material-icons {
    font-size: 18px;
}

.admin-btn-sm {
    padding: 6px 12px;
    border-radius: 8px;
    min-height: 24px;
}

.admin-btn-primary {
    background: linear-gradient(135deg, #c62828, #e53935);
    color: #fff;
}

.admin-btn-primary:hover {
    background: linear-gradient(135deg, #b71c1c, #e53935);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.admin-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-btn-outline:hover {
    background: rgba(229, 57, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.3);
    color: #e53935;
    transform: translateY(-2px);
}

.admin-btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 10px;
}

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.pending,
.status-badge.Новая {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-badge.completed,
.status-badge.Завершено {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-badge.cancelled,
.status-badge.Отменено {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* TxID */
.txid-display {
    font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 11px;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px 15px !important;
    max-width: none;
    border-radius: 30px !important;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.card-display {
    max-width: none !important;
}

.txid-display:hover {
    background: rgba(229, 57, 53, 0.08);
    border-color: rgba(229, 57, 53, 0.25);
    color: #e53935;
    transform: translateY(-1.5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.txid-display .copy-icon {
    font-family: 'Material Icons' !important;
    font-weight: normal !important;
    font-size: 14px !important;
    opacity: 0.5;
    transition: all 0.2s ease;
    line-height: 1;
}

.txid-display:hover .copy-icon {
    opacity: 1;
    transform: scale(1.1);
}

.txid-display:active {
    transform: translateY(0) scale(0.98);
}

.admin-detail-value .txid-display {
    width: 100%;
    margin-top: 4px;
}

/* Modal */
.admin-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.admin-modal-overlay.show {
    display: flex;
}

.admin-modal {
    background: #1a1d26;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 520px;
    /* max-height: 90vh; */
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
    justify-content: center;
    margin: 1.75rem auto;
}

/* Side Drawer (Filters) */
.modal.fade .modal-dialog.right-popup {
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    margin-left: auto;
    height: 100%;
    max-width: 400px;
}

.modal.show .modal-dialog.right-popup {
    transform: translateX(0);
}

.right-popup .admin-modal {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-modal-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-modal-close,
.close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.admin-modal-close:hover,
.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.admin-modal-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

.admin-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

/* Submenu */
.nav-submenu {
    display: none;
    flex-direction: column;
    padding-left: 32px;
    margin-bottom: 8px;
}

.nav-submenu.open {
    display: flex;
}

/* Desktop Hide Mobile Elements */
@media (min-width: 992px) {
    #mobile-bottom-nav {
        display: none !important;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Safe UI Overrides */
.white-block.trader-header .white-block-title span {
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
}

.white-block.trader-header .header-icon-btn,
.white-block.trader-header .balance-select-button,
.white-block.trader-header .exchange-rates-button {
    background: rgba(255, 255, 255, 0.03) !important;
    color: #e4e4e7 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.white-block.trader-header .header-icon-btn:hover,
.white-block.trader-header .balance-select-button:hover,
.white-block.trader-header .exchange-rates-button:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.white-block.trader-header #header-balance-main,
.white-block.trader-header .balance-select-arrow {
    color: #fff !important;
}

#balanceDropdownMenu {
    background: #1a1d26 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#balanceDropdownMenu .balance-option-item span {
    color: #e4e4e7 !important;
}

#balanceDropdownMenu .balance-option-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Language selector */
.user-permissions-trader [aria-label="Language"] {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.user-permissions-trader [aria-label="Language"] button {
    background: transparent !important;
    color: #888 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.user-permissions-trader [aria-label="Language"] button[aria-pressed="true"] {
    background: rgba(229, 57, 53, 0.15) !important;
    color: #e53935 !important;
}

/* Sidebar safe override */
.css-1uf1hf7 {
    background: #1a1d26 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.css-1uf1hf7 .MuiTypography-root,
.css-1uf1hf7 .MuiListItemIcon-root {
    color: #888 !important;
}

.css-1uf1hf7 .Mui-selected,
.css-1uf1hf7 .Mui-selected .MuiTypography-root,
.css-1uf1hf7 .Mui-selected .MuiListItemIcon-root {
    background: rgba(229, 57, 53, 0.15) !important;
    color: #e53935 !important;
}

.css-1uf1hf7 .MuiButtonBase-root:hover {
    background: rgba(229, 57, 53, 0.08) !important;
}

/* Progress & Utility */
.text-accent {
    color: #e53935;
    font-weight: 600;
    font-family: 'Inter', monospace;
}

.text-success {
    color: #22c55e;
    font-weight: 600;
}

.text-warning {
    color: #f59e0b;
    font-weight: 600;
}

.text-danger {
    color: #ef4444;
    font-weight: 600;
}

.text-muted {
    color: #666;
    font-size: 13px;
}

.text-sm {
    font-size: 11px;
}

/* Dashboard Premium Blocks */
.dashboard-block {
    background: rgba(26, 29, 38, 0.6) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    border-radius: 24px !important;
    padding: 28px !important;
    margin: 12px 8px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.white-block-title {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    margin-bottom: 24px !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.white-block-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #ef4444;
    border-radius: 4px;
}

/* Tabs Upgrade */
.admin-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 24px;
    width: fit-content;
}

.admin-tab {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: transparent;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.admin-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.admin-tab.active {
    background: #e53935;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.admin-tab .badge {
    background: rgba(0, 0, 0, 0.2) !important;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 5px;
    min-width: 20px;
    text-align: center;
}

.admin-tab.active .badge {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* Indicators */
.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.indicator-dot.green {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.indicator-dot.red {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

/* Custom Scrollbar for sidebars/modals */
.custom-scroll::-webkit-scrollbar {
    width: 5px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .admin-main {
        margin-left: 0 !important;
    }

    .admin-content {
        padding: 16px;
    }

    .dashboard-block {
        margin: 8px 0 !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
    }
}

/* Premium Form Elements */
.form-check-input:checked {
    background-color: #e53935 !important;
    border-color: #e53935 !important;
}

.form-check-input {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 1.25em;
    height: 1.25em;
    margin: 0;
    /* Reset margin */
    padding: 0 !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.form-check-input:checked {
    background-color: #e53935 !important;
    border-color: #e53935 !important;
}

.form-check-input:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 1px;
}

/* Switches specifically */
.form-switch .form-check-input {
    width: 2.5em !important;
    height: 1.25em !important;
    border-radius: 2em !important;
    background-image: none !important;
    margin-left: 0 !important;
    /* Fix for Bootstrap negative margin clipping */
    /* Remove standard bootstrap BG */
}

.form-switch .form-check-input::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 2px;
    width: calc(1.25em - 4px);
    height: calc(1.25em - 4px);
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-switch .form-check-input:hover::after {
    background-color: rgba(255, 255, 255, 0.6);
}

.form-switch .form-check-input:checked:hover {
    background-color: #ef4444 !important;
}

.form-switch .form-check-input:checked::after {
    left: calc(2.5em - 1.25em + 2px);
    background-color: #fff;
    transform: none;
    /* Override standard checkbox style */
}

.form-check-label {
    display: flex !important;
    align-items: center !important;
    color: #888;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0;
    height: 1.25em;
    /* Match input height */
}

.form-check {
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* ===== Premium Select (Premium UI) ===== */
.premium-select-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.premium-select-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.premium-select-trigger {
    width: 100%;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.03);
    user-select: none;
    will-change: transform, background-color;
    backface-visibility: hidden;
}

.premium-select-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.premium-select-trigger .material-icons {
    color: #6b7280;
    transition: transform 0.3s ease, color 0.3s ease;
}

.premium-select-container.open .premium-select-trigger {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.03);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.premium-select-container.open .premium-select-label {
    color: #ef4444;
}

.premium-select-container.open .premium-select-trigger .material-icons {
    transform: rotate(180deg);
    color: #ef4444;
}

.premium-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #1a1d26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.97);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.premium-select-container.open .premium-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.premium-select-list {
    list-style: none;
    padding: 8px;
    margin: 0;
    max-height: 280px;
    overflow-y: auto;
}

.premium-select-option {
    padding: 10px 14px;
    font-size: 14px;
    color: #d1d5db;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.premium-select-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding-left: 18px;
}

.premium-select-option.selected {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    color: #ef4444;
    font-weight: 700;
}

.premium-select-option.selected::after {
    content: '\e5ca';
    font-family: 'Material Icons';
    font-size: 18px;
}

.premium-select-list::-webkit-scrollbar {
    width: 4px;
}

.premium-select-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Modal Extensions */
.admin-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    background: #1a1d26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: toastIn 0.3s ease;
    max-width: 400px;
}

.admin-toast.success {
    border-left: 3px solid #22c55e;
}

.admin-toast.error {
    border-left: 3px solid #ef4444;
}

@keyframes toastIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loader */
:root {
    --loader-color: #ef4444;
    --loader-size: 120px;
    --loader-thickness: 0.2px;
}

.matx-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--loader-size);
    height: var(--loader-size);
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--loader-color);
}

.matx-loader img {
    position: absolute;
    height: 45px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.matx-loader div {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    border: var(--loader-thickness) solid currentColor;
    border-radius: 50%;
    border-color: currentColor transparent transparent transparent;
    animation: matx-loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.matx-loader div:first-child {
    animation-delay: -0.45s;
}

.matx-loader div:nth-child(2) {
    animation-delay: -0.3s;
}

.matx-loader div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes matx-loader {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.copy-text {
    cursor: pointer;
    color: #e53935;
}

.copy-text:hover {
    text-decoration: underline;
}

.no-data-text {
    text-align: center;
    padding: 40px 0;
    color: #555;
    font-size: 14px;
}

/* Modal Extensions */
.admin-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.admin-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.close-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-btn:hover {
    background: rgba(229, 57, 53, 0.1);
    color: #e53935;
    border-color: rgba(229, 57, 53, 0.3);
    transform: rotate(90deg);
}

.close-btn .material-icons {
    font-size: 18px;
}

.admin-form-group {
    margin-bottom: 20px;
}

/* Mobile Transaction Cards */
.mobile-transactions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transaction-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.2s ease;
}

.transaction-card:hover {
    background: rgba(229, 57, 53, 0.04);
    border-color: rgba(229, 57, 53, 0.15);
    transform: translateY(-2px);
}

.t-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.t-card-bank {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.t-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.t-card-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.t-card-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}

.t-card-value {
    font-size: 13px;
    font-weight: 600;
}

.t-card-footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t-card-actions {
    display: flex;
    gap: 8px;
}

.t-card-txid {
    font-size: 11px;
    color: #888;
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 6px;
    border-radius: 4px;
}

.admin-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.admin-input {
    width: 100%;
    background: #12141c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.admin-input:focus {
    outline: none;
    border-color: #e53935;
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1);
    background: #161923;
}

.admin-input::placeholder {
    color: #444;
}

/* Details List */
.admin-detail-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.admin-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.admin-detail-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.admin-detail-value {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-align: right;
}

/* Dropdowns in Modals */
.admin-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1d26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 8px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.admin-dropdown-menu.show {
    display: block;
    animation: fadeInDown 0.2s ease;
}

.admin-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-dropdown-item {
    padding: 12px 16px;
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
}

.admin-dropdown-item:hover {
    background: rgba(229, 57, 53, 0.1);
    color: #fff;
}

.admin-dropdown-item.selected {
    color: #e53935;
    font-weight: 700;
    background: rgba(229, 57, 53, 0.05);
}

/* Extra Btn Styles */
.admin-btn-danger {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

.admin-btn-danger:hover {
    background: #ef4444 !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Datepicker Fixes - Ensure higher z-index than admin modals */
#datepicker-container,
#dtp-container {
    position: relative;
    z-index: 10060 !important;
}

.dtp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 10060 !important;
}

.MuiPickersDay-root.Mui-selected {
    background-color: #e53935 !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4) !important;
}

.MuiPickersDay-root:hover {
    background-color: rgba(229, 57, 53, 0.1) !important;
}

.MuiPickersDay-today {
    border: 1px solid #e53935 !important;
}

.MuiMultiSectionDigitalClockSection-item.Mui-selected {
    background-color: rgba(229, 57, 53, 0.15) !important;
    color: #e53935 !important;
    font-weight: 700 !important;
}


#datepicker-popup,
#dtp-popup,
.MuiPickersPopper-paper {
    z-index: 10061 !important;
}

@media (max-width: 600px) {

    #datepicker-popup,
    #dtp-popup,
    .MuiPickersPopper-paper {
        width: 100% !important;
        max-width: 100% !important;
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        margin: 0 !important;
        height: auto !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        border-radius: 24px 24px 0 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-bottom: none !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8) !important;
        padding-top: 12px !important;
        background: #1a1d26 !important;
        color: #fff !important;
        animation: slideUpMobile 0.3s ease-out forwards;
    }

    #datepicker-popup::before,
    #dtp-popup::before,
    .MuiPickersPopper-paper::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
        margin: 0 auto 12px auto;
    }

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

        to {
            transform: translateY(0);
        }
    }

    .MuiPickersLayout-root {
        flex-direction: column !important;
        display: flex !important;
        width: 100% !important;
        background: transparent !important;
    }

    .MuiPickersLayout-contentWrapper {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    /* Dark Mode internal elements */
    .MuiPickersCalendarHeader-root,
    .MuiPickersCalendarHeader-label,
    .MuiDayCalendar-weekDayLabel,
    .MuiPickersDay-root,
    .MuiTypography-root,
    .MuiSvgIcon-root {
        color: #fff !important;
    }

    .MuiPickersArrowSwitcher-button {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .MuiDateCalendar-root {
        width: 100% !important;
        height: auto !important;
        min-height: 250px !important;
        max-height: 300px !important;
        padding: 0 8px !important;
    }

    .MuiMultiSectionDigitalClock-root {
        width: 100% !important;
        max-height: 140px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        display: flex !important;
        flex-direction: row !important;
        background: rgba(0, 0, 0, 0.2) !important;
    }

    .MuiMultiSectionDigitalClockSection-root {
        flex: 1 !important;
        border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .MuiPickersDay-root {
        width: 36px !important;
        height: 36px !important;
        font-size: 13px !important;
        margin: 1px !important;
    }

    .MuiDivider-vertical {
        display: none !important;
    }

    .MuiPickersLayout-actionBar {
        padding: 8px !important;
        background: #1a1d26 !important;
    }

    .MuiButton-textPrimary {
        color: #e53935 !important;
        font-weight: 700 !important;
    }

    /* Scrollbar styling */
    .MuiMultiSectionDigitalClockSection-root::-webkit-scrollbar {
        width: 4px;
    }

    .MuiMultiSectionDigitalClockSection-root::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
}




/* Premium Checkbox Styling */
.admin-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}

.admin-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.admin-checkbox label {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    transition: color 0.2s;
    user-select: none;
    display: inline-block;
}

.admin-checkbox:hover label {
    color: #fff;
}

.admin-checkbox label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #12141c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-checkbox input:checked+label:before {
    background: #e53935;
    border-color: #e53935;
    box-shadow: 0 0 10px rgba(229, 57, 53, 0.3);
}

.admin-checkbox label:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translateY(-60%) rotate(45deg);
    opacity: 0;
    transition: all 0.2s;
}

.admin-checkbox input:checked+label:after {
    opacity: 1;
}

.admin-checkbox:hover label:before {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Toast Implementation Fixes */
.Toastify {
    z-index: 20000 !important;
}

/* Notification Drawer Fix */
#notificationDrawer {
    z-index: 10060 !important;
}

/* Payment Modal Premium Styling */
.payment-modal .admin-modal-body {
    padding: 24px 32px 32px 32px;
}

.payment-instructions {
    text-align: center;
    margin-bottom: 24px;
}

.payment-instructions .main-text {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.payment-instructions .sub-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.payment-instructions .highlight-amount {
    color: #ef4444;
    font-weight: 700;
}

.payment-instructions .highlight-timer {
    color: #facc15;
    font-weight: 700;
}

.qr-container {
    background: #ffffff;
    padding: 12px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 24px;
}

.qr-container img {
    display: block;
    mix-blend-mode: multiply;
    /* Ensures black on white contrast */
}

.payment-address-block {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
}

.payment-address-block:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.payment-address-block .address-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.35);
    display: block;
    margin-bottom: 4px;
}

.payment-address-block .address-value {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    word-break: break-all;
    line-height: 1.4;
}

.payment-address-block .copy-icon {
    font-family: 'Material Icons' !important;
    font-weight: normal !important;
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    margin-left: 12px;
}

.payment-address-block:hover .copy-icon {
    color: #fff;
}

.payment-warning-block {
    width: 100%;
    background: rgba(245, 158, 11, 0.08);
    border: 1px dashed rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.payment-warning-block .warning-icon {
    color: #f59e0b;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-warning-block .warning-text {
    color: rgba(245, 158, 11, 0.9);
    font-size: 13px;
    line-height: 1.6;
}

.payment-warning-block .highlight {
    color: #f59e0b;
    font-weight: 700;
}

/* Premium Dropdown Menus (User, Balance, Global Mui Menus) */
#userDropdownMenu,
#balanceDropdownMenu,
.MuiPaper-root[class*="MuiMenu-paper"],
.MuiPaper-root[class*="MuiPopover-paper"],
.MuiMenu-paper,
.MuiPopover-paper {
    background: #1a1d26 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    padding: 6px 0 !important;
}

#userDropdownMenu li,
#balanceDropdownMenu li,
.MuiMenuItem-root,
.balance-option-item {
    padding: 10px 18px !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 8px !important;
    margin: 2px 8px !important;
    color: #e4e4e7 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

#userDropdownMenu li a,
#userDropdownMenu li span.MuiBox-root {
    color: #e4e4e7 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
}

.MuiMenuItem-root:hover,
.balance-option-item:hover,
#userDropdownMenu li:hover {
    background: rgba(229, 57, 53, 0.1) !important;
}

#userDropdownMenu li:hover a,
#userDropdownMenu li:hover span.MuiBox-root {
    color: #fff !important;
}

#userDropdownMenu li .anticon,
#userDropdownMenu li .MuiSvgIcon-root,
.MuiMenuItem-root .material-icons,
.MuiMenuItem-root .MuiSvgIcon-root,
.MuiMenuItem-root svg {
    font-size: 20px !important;
    color: #888 !important;
    transition: color 0.2s ease !important;
}

#userDropdownMenu li:hover .anticon,
#userDropdownMenu li:hover .MuiSvgIcon-root,
.MuiMenuItem-root:hover .material-icons,
.MuiMenuItem-root:hover .MuiSvgIcon-root,
.MuiMenuItem-root:hover svg {
    color: #ef4444 !important;
}

.MuiMenu-list {
    padding: 4px 0 !important;
}

.MuiTouchRipple-root {
    display: none !important;
}

/* Premium Language Switcher (Sliding Pill) */
.premium-lang-switcher {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    padding: 2px !important;
    position: relative !important;
    backdrop-filter: blur(10px) !important;
    width: 92px !important;
    height: 36px !important;
}

.premium-lang-switcher .lang-slider {
    position: absolute !important;
    top: 2px !important;
    left: 2px !important;
    width: 44px !important;
    height: 30px !important;
    background: #e53935 !important;
    border-radius: 8px !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3) !important;
    z-index: 1 !important;
}

.premium-lang-switcher.en .lang-slider {
    transform: translateX(44px) !important;
}

.premium-lang-switcher .lang-btn {
    appearance: none !important;
    border: none !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.5) !important;
    width: 44px !important;
    height: 32px !important;
    padding: 0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    font-family: inherit !important;
    transition: color 0.3s ease !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2 !important;
    position: relative !important;
    letter-spacing: 0.5px !important;
    opacity: 0.5 !important;
}

.premium-lang-switcher .lang-btn.active {
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 800 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Premium Header Icon Buttons */
.header-icon-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)) !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    color: #e4e4e7 !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
}

.header-icon-btn:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
}

.header-icon-btn.active,
.header-icon-btn:active {
    transform: translateY(0) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.header-icon-btn .MuiSvgIcon-root {
    font-size: 20px !important;
    transition: transform 0.3s ease !important;
}

.header-icon-btn:hover .MuiSvgIcon-root {
    transform: scale(1.1) !important;
}

/* Specific colors for actions */
.header-icon-btn.exchange-rates-button,
.header-icon-btn.withdrawal-btn {
    color: #e53935 !important;
}

.header-icon-btn.deposit-btn {
    color: #22c55e !important;
}

.lang-toggle-btn:hover .material-icons {
    transform: rotate(45deg) scale(1.1) !important;
}

.lang-code-badge {
    transition: all 0.3s ease !important;
}

/* Premium Balance Selector */
.balance-select-button {
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)) !important;
    min-width: 220px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 16px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(12px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
}

.balance-select-button:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
}

.balance-select-button .balance-select-arrow {
    transition: transform 0.3s ease !important;
}

.balance-select-button:hover .balance-select-arrow {
    transform: rotate(180deg) !important;
}

#balanceDropdownMenu {
    background: #1a1d26 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    padding: 6px 0 !important;
    margin-top: 8px !important;
}

.balance-option-item {
    padding: 10px 18px !important;
    transition: all 0.2s ease !important;
    border-radius: 8px !important;
    margin: 2px 8px !important;
    color: #e4e4e7 !important;
}

.balance-option-item:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    color: #fff !important;
}

.premium-lang-switcher .lang-btn.active {
    animation: none;
    /* Can be enabled if needed */
}

/* Final Dropdown Refinement */
#userDropdownMenu,
#userDropdownMenu *,
#balanceDropdownMenu,
#balanceDropdownMenu * {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

#userDropdownMenu a {
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

/* Premium Notification Drawer */
.notification-drawer {
    background-color: #1a1d26 !important;
    color: #e4e4e7 !important;
    width: 320px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    z-index: 20000 !important;
}

#notificationBackdrop {
    z-index: 19999 !important;
}

.notification-drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    background: rgba(255, 255, 255, 0.02);
}

.notification-drawer-header .header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-drawer-header .icon {
    color: #e53935;
    font-size: 24px;
}

.notification-drawer-header h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.notification-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.notification-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
    color: #888;
}

.notification-empty-state .empty-icon-v2 {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.notification-empty-state .empty-icon-v2 .material-icons {
    font-size: 32px;
    color: #555;
    opacity: 0.5;
}

.notification-empty-state h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.notification-empty-state p {
    font-size: 13px;
    line-height: 1.5;
    color: #888;
}

.notification-drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

@media (max-width: 576px) {
    .notification-drawer {
        width: 100% !important;
    }
}

/* Premium Toastify Notifications */
.Toastify {
    position: fixed !important;
    z-index: 30000 !important;
    pointer-events: none !important;
    padding: 16px !important;
    width: 380px !important;
    top: 20px !important;
    right: 20px !important;
}

.Toastify__toast {
    position: relative !important;
    min-height: 64px !important;
    box-sizing: border-box !important;
    margin-bottom: 1rem !important;
    padding: 14px 20px !important;
    border-radius: 12px !important;
    display: flex !important;
    justify-content: space-between !important;
    max-height: 800px !important;
    overflow: hidden !important;
    font-family: inherit !important;
    cursor: pointer !important;
    direction: ltr !important;
    background: rgba(26, 29, 38, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    pointer-events: auto !important;
}

.Toastify__toast--success {
    border-left: 4px solid #22c55e !important;
}

.Toastify__toast--error {
    border-left: 4px solid #e53935 !important;
}

.Toastify__toast--warning {
    border-left: 4px solid #f59e0b !important;
}

.Toastify__toast--info {
    border-left: 4px solid #3b82f6 !important;
}

.Toastify__toast-body {
    margin: auto 0 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.Toastify__toast-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

.Toastify__close-button {
    color: #888 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    opacity: 0.7 !important;
    transition: 0.3s ease !important;
}

.Toastify__progress-bar {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: currentColor !important;
}

.Toastify__toast--animate-in {
    animation: toast-in 0.4s ease both !important;
}

.Toastify__toast--animate-out {
    animation: toast-out 0.4s ease both !important;
}

@keyframes toast-in {
    from {
        transform: translateX(110%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(110%);
        opacity: 0;
    }
}

/* Premium Table Enhancements */
.admin-table thead th {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.01);
}

.status-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Custom switch for better alignment */
.form-check.form-switch {
    display: flex;
    align-items: center;
    justify-content: left;
    min-height: auto;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    height: 1.25em !important;
    width: 2.25em !important;
    margin-top: 0 !important;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #e53935 !important;
    border-color: #e53935 !important;
}

.btn-icon-xs {
    width: 28px !important;
    height: 28px !important;
    padding: 0 !important;
}

.btn-icon-xs .material-icons {
    font-size: 14px !important;
}

/* Responsive Table */
@media (max-width: 1400px) {

    .admin-table tbody td,
    .admin-table thead th {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Adaptive Filter Modal & Drawer Enhancements */
.admin-input-group {
    display: flex !important;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-input-group>div {
    flex: 1 1 140px !important;
    min-width: 0;
}

@media (max-width: 480px) {
    .admin-input-group>div {
        flex: 1 1 100% !important;
    }
}

.modal-dialog.right-popup .admin-modal {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 0 !important;
    background: #1a1d26 !important;
}

.modal-dialog.right-popup .admin-modal-header {
    padding: 24px 28px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: sticky !important;
    top: 0;
    z-index: 10;
    background: #1a1d26 !important;
}

.modal-dialog.right-popup .admin-modal-body {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 24px 28px !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.modal-dialog.right-popup .admin-modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-dialog.right-popup .admin-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-dialog.right-popup .admin-modal-footer {
    padding: 20px 28px !important;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: sticky !important;
    bottom: 0;
    z-index: 10;
}

@media (max-width: 768px) {
    .modal-dialog.right-popup .admin-modal-body {
        padding-bottom: 120px !important;
        /* Extra space for bottom nav */
    }
}

.checkboxes-group-block {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.checkboxes-group-block .admin-checkbox {
    flex: 1 1 calc(50% - 12px);
    margin-bottom: 0 !important;
}

@media (max-width: 420px) {
    .checkboxes-group-block .admin-checkbox {
        flex: 1 1 100%;
    }
}

/* Premium UI Enhancements (Moved from Withdrawals) */
.drag-drop-zone {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.drag-drop-zone:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.drag-drop-zone.dragover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

.drag-drop-zone .material-icons {
    font-size: 48px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.drag-drop-text {
    font-size: 14px;
    font-weight: 600;
    color: #e4e4e7;
}

.drag-drop-subtext {
    font-size: 11px;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.modal-btn {
    height: 50px;
    border-radius: 12px;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.pam-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pam-label {
    font-size: 10px;
    font-weight: 700;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pam-value {
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
}

.pam-amount-hero {
    text-align: center;
    padding: 16px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 20px;
    margin-bottom: 16px;
}

.pam-amount-value {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.withdrawal-amount {
    font-size: 18px !important;
    letter-spacing: -0.5px;
    font-weight: 800 !important;
}

.txid-display {
    display: inline-flex;
    align-items: center;
    gap: 6px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 4px 15px !important;
    border-radius: 30px !important;
    color: #e4e4e7 !important;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px !important;
    line-height: 1.2 !important;
}

.card-display {
    max-width: none !important;
}

/* Ensure bold text is actually bold in Inter */
.fw-bold {
    font-weight: 700 !important;
}

.fw-extrabold {
    font-weight: 800 !important;
}


/* Enhanced Table Rows */
.admin-table.table-hover tbody td {
    padding: 22px 20px !important;
    vertical-align: middle !important;
}

.type-badge {
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #71717a;
    width: fit-content;
    text-transform: uppercase;
}


.btn-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

.btn-yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.btn-red {
    background: linear-gradient(135deg, #e53935, #c62828);
    color: #fff;
}

.pam-value.accent {
    color: #82b1ff;
    font-family: monospace;
}

#payoutActionModal .admin-modal {
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: 85vh;
}

#payoutActionModal .admin-modal::-webkit-scrollbar {
    display: none;
}

.withdrawal-id-cell {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.withdrawal-txid {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #82b1ff;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.withdrawal-row:hover td {
    background: rgba(255, 255, 255, 0.03) !important;
}

.admin-table th:nth-child(5) {
    width: 220px;
}