/* ========================================
   MODERN USER PANEL - OPTIMIZED
   ======================================== */

/* === GLOBAL PANEL STYLES === */
.panel-layout {
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #0f1923 100%);
    position: relative;
}

.panel-layout::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.page-container {
    position: relative;
    z-index: 1;
}

/* === SIDEBAR ENHANCEMENTS === */
.side-nav {
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3);
}

/* Sidebar menu scrollbar customization */
.panel-layout .side-nav .side-nav-inside .side-nav-menu::-webkit-scrollbar {
    width: 8px;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Wallet Balance Card Enhancement */
.side-wallet-box.default-wallet {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.side-wallet-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.side-wallet-box .wallet-name .name {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.side-wallet-box .wallet-name .default {
    color: rgba(255, 255, 255, 0.8);
}

.side-wallet-box .wallet-info .wallet-id {
    color: rgba(255, 255, 255, 0.9);
}

.side-wallet-box .wallet-info .balance {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.user-balance-card .wallet-info {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.user-balance-card .wallet-info:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

/* Sidebar Buttons Enhancement */
.side-wallet-box .actions .user-sidebar-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.side-wallet-box .actions .user-sidebar-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.side-wallet-box .actions .user-sidebar-btn.red-btn {
    background: rgba(231, 54, 103, 0.3);
    border-color: rgba(231, 54, 103, 0.5);
}

.side-wallet-box .actions .user-sidebar-btn.red-btn:hover {
    background: rgba(231, 54, 103, 0.5);
}

/* Sidebar Navigation Menu Enhancement */
.side-nav-menu .side-nav-item a,
.side-nav-menu .side-nav-item button {
    transition: all 0.3s ease;
    position: relative;
}

.side-nav-menu .side-nav-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 70%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 4px 4px 0;
    transition: width 0.3s ease;
}

.side-nav-menu .side-nav-item a:hover::before,
.side-nav-menu .side-nav-item.active a::before {
    width: 4px;
}

.side-nav-menu .side-nav-item a:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(3px);
}

.side-nav-menu .side-nav-item.active a {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

/* Logout Button Special Styling */
.side-nav-menu .side-nav-item form button.site-btn {
    background: linear-gradient(135deg, rgba(231, 54, 103, 0.2) 0%, rgba(197, 42, 86, 0.2) 100%);
    border: 1px solid rgba(231, 54, 103, 0.4);
}

.side-nav-menu .side-nav-item form button.site-btn:hover {
    background: linear-gradient(135deg, rgba(231, 54, 103, 0.4) 0%, rgba(197, 42, 86, 0.4) 100%);
    border-color: rgba(231, 54, 103, 0.6);
    transform: translateY(-2px);
}

/* === SITE CARDS ENHANCEMENT === */
.site-card {
    background: rgba(15, 25, 35, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.site-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.site-card-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.site-card-header .title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* === TABLES ENHANCEMENT === */
.site-table .table {
    color: rgba(255, 255, 255, 0.9);
}

.site-table .table thead {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.site-table .table thead th {
    color: #ffffff;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.site-table .table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.site-table .table tbody tr:hover {
    background: rgba(102, 126, 234, 0.08);
}

.site-table .table tbody td {
    color: rgba(255, 255, 255, 0.85);
}

/* === BADGES ENHANCEMENT === */
.site-badge.primary-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.site-badge.primary-bg:hover {
    transform: scale(1.05);
}

.site-badge.success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 2px 8px rgba(67, 233, 123, 0.3);
}

.site-badge.warnning {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 2px 8px rgba(250, 112, 154, 0.3);
}

/* === BUTTONS ENHANCEMENT === */
.site-btn.grad-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.site-btn.grad-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.apply-btn,
.table-filter .search button[type="submit"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
}

.apply-btn:hover,
.table-filter .search button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* === FORM INPUTS ENHANCEMENT === */
.table-filter input[type="text"],
.table-filter input[type="date"],
.search input[type="text"],
.search input[type="date"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.table-filter input:focus,
.search input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* === TRANSACTION DESCRIPTION === */
.table-description {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-description .icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.table-description:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
}

/* === SCROLLBAR ENHANCEMENT === */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* === COLOR UTILITIES === */
.green-color {
    color: #43e97b;
}

.red-color {
    color: #f5576c;
}

/* === MOBILE TRANSACTIONS === */
.mobile-transactions .single-transaction {
    background: rgba(15, 25, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.mobile-transactions .single-transaction:hover {
    background: rgba(15, 25, 35, 0.8);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

/* === MOBILE STATISTIC CARDS === */
.all-feature-mobile {
    background: rgba(15, 25, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 16px;
    padding: 20px;
}

.all-feature-mobile .title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hide additional items initially */
.moretext,
.moretext-2 {
    display: none;
}

/* === MOBILE NAVIGATION CARDS === */
.all-feature-mobile .single {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.all-feature-mobile .single:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.all-feature-mobile .single a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.all-feature-mobile .single .icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.all-feature-mobile .single .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.all-feature-mobile .single .name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: capitalize;
}

.all-cards-mobile .single-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.all-cards-mobile .single-card:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.all-cards-mobile .single-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.all-cards-mobile .single-card .icon i {
    font-size: 24px;
    color: #ffffff;
}

.all-cards-mobile .single-card .content {
    flex: 1;
}

.all-cards-mobile .single-card .content .amount {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.all-cards-mobile .single-card .content .name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Load More Button */
.centered {
    text-align: center;
    margin-top: 16px;
    padding: 10px 0;
}

.moreless-button,
.moreless-button-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.moreless-button:hover,
.moreless-button-2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* === MOBILE BOTTOM NAVIGATION === */
.mobile-bottom-nav {
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.mobile-bottom-nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: #667eea;
}

/* === MOBILE HEADER === */
.mobile-header {
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .panel-layout {
        background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #0f1923 100%);
    }
    
    .site-card {
        margin-bottom: 16px;
        border-radius: 12px;
    }
    
    .site-card-header {
        padding: 16px;
    }
    
    .site-card-header .title {
        font-size: 16px;
    }
    
    .site-card-body {
        padding: 16px;
    }
    
    .table {
        font-size: 13px;
    }
    
    .site-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .site-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Mobile input adjustments */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="date"],
    textarea,
    select {
        font-size: 16px; /* Prevent zoom on focus */
    }
}

@media (max-width: 576px) {
    .all-feature-mobile {
        padding: 16px;
    }
    
    .all-cards-mobile .single-card {
        padding: 14px;
        gap: 12px;
    }
    
    .all-cards-mobile .single-card .icon {
        width: 45px;
        height: 45px;
    }
    
    .all-cards-mobile .single-card .icon i {
        font-size: 20px;
    }
    
    .all-cards-mobile .single-card .content .amount {
        font-size: 18px;
    }
    
    .all-cards-mobile .single-card .content .name {
        font-size: 12px;
    }
}

.panel-layout::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.page-container {
    position: relative;
    z-index: 1;
}

/* === SIDEBAR ENHANCEMENTS === */
.side-nav {
    background: rgba(15, 25, 35, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-right: 1px solid rgba(102, 126, 234, 0.15) !important;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3) !important;
}

/* Sidebar menu scrollbar customization */
.panel-layout .side-nav .side-nav-inside .side-nav-menu::-webkit-scrollbar {
    width: 8px !important;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05) !important;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 10px !important;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}

/* Wallet Balance Card Enhancement */
.side-wallet-box.default-wallet {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    position: relative;
    overflow: hidden;
}

.side-wallet-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.side-wallet-box .wallet-name .name {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.side-wallet-box .wallet-name .default {
    color: rgba(255, 255, 255, 0.8) !important;
}

.side-wallet-box .wallet-info .wallet-id {
    color: rgba(255, 255, 255, 0.9) !important;
}

.side-wallet-box .wallet-info .balance {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.user-balance-card .wallet-info {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.user-balance-card .wallet-info:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateX(3px);
}

/* Sidebar Buttons Enhancement */
.side-wallet-box .actions .user-sidebar-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
}

.side-wallet-box .actions .user-sidebar-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.side-wallet-box .actions .user-sidebar-btn.red-btn {
    background: rgba(231, 54, 103, 0.3) !important;
    border-color: rgba(231, 54, 103, 0.5) !important;
}

.side-wallet-box .actions .user-sidebar-btn.red-btn:hover {
    background: rgba(231, 54, 103, 0.5) !important;
}

/* Sidebar Navigation Menu Enhancement */
.side-nav-menu .side-nav-item a,
.side-nav-menu .side-nav-item button {
    transition: all 0.3s ease !important;
    position: relative;
}

.side-nav-menu .side-nav-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 70%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 4px 4px 0;
    transition: width 0.3s ease;
}

.side-nav-menu .side-nav-item a:hover::before,
.side-nav-menu .side-nav-item.active a::before {
    width: 4px;
}

.side-nav-menu .side-nav-item a:hover {
    background: rgba(102, 126, 234, 0.1) !important;
    transform: translateX(3px);
}

.side-nav-menu .side-nav-item.active a {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

/* Logout Button Special Styling */
.side-nav-menu .side-nav-item form button.site-btn {
    background: linear-gradient(135deg, rgba(231, 54, 103, 0.2) 0%, rgba(197, 42, 86, 0.2) 100%) !important;
    border: 1px solid rgba(231, 54, 103, 0.4) !important;
}

.side-nav-menu .side-nav-item form button.site-btn:hover {
    background: linear-gradient(135deg, rgba(231, 54, 103, 0.4) 0%, rgba(197, 42, 86, 0.4) 100%) !important;
    border-color: rgba(231, 54, 103, 0.6) !important;
    transform: translateY(-2px);
}

/* === SITE CARDS ENHANCEMENT === */
.site-card {
    background: rgba(15, 25, 35, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(102, 126, 234, 0.15) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease;
}

.site-card:hover {
    border-color: rgba(102, 126, 234, 0.3) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-2px);
}

.site-card-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%) !important;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2) !important;
}

.site-card-header .title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* === TABLES ENHANCEMENT === */
.site-table .table {
    color: rgba(255, 255, 255, 0.9) !important;
}

.site-table .table thead {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%) !important;
}

.site-table .table thead th {
    color: #ffffff !important;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3) !important;
}

.site-table .table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease;
}

.site-table .table tbody tr:hover {
    background: rgba(102, 126, 234, 0.08) !important;
}

.site-table .table tbody td {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* === BADGES ENHANCEMENT === */
.site-badge.primary-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.site-badge.primary-bg:hover {
    transform: scale(1.05);
}

.site-badge.success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
    box-shadow: 0 2px 8px rgba(67, 233, 123, 0.3);
}

.site-badge.warnning {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
    box-shadow: 0 2px 8px rgba(250, 112, 154, 0.3);
}

/* === BUTTONS ENHANCEMENT === */
.site-btn.grad-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.site-btn.grad-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

.apply-btn,
.table-filter .search button[type="submit"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    transition: all 0.3s ease !important;
}

.apply-btn:hover,
.table-filter .search button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* === FORM INPUTS ENHANCEMENT === */
.table-filter input[type="text"],
.table-filter input[type="date"],
.search input[type="text"],
.search input[type="date"] {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.table-filter input:focus,
.search input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

/* === TRANSACTION DESCRIPTION === */
.table-description {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-description .icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.table-description:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
}

/* === SCROLLBAR ENHANCEMENT === */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* === COLOR UTILITIES === */
.green-color {
    color: #43e97b !important;
}

.red-color {
    color: #f5576c !important;
}

/* === MOBILE TRANSACTIONS === */
.mobile-transactions .single-transaction {
    background: rgba(15, 25, 35, 0.6) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.mobile-transactions .single-transaction:hover {
    background: rgba(15, 25, 35, 0.8) !important;
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

/* === MOBILE STATISTIC CARDS === */
.all-feature-mobile {
    background: rgba(15, 25, 35, 0.6) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 16px;
    padding: 20px;
}

.all-feature-mobile .title {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hide additional items initially */
.moretext,
.moretext-2 {
    display: none;
}

/* === MOBILE NAVIGATION CARDS === */
.all-feature-mobile .single {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%) !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease;
    text-align: center;
}

.all-feature-mobile .single:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%) !important;
    border-color: rgba(102, 126, 234, 0.4) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.all-feature-mobile .single a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.all-feature-mobile .single .icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.3) !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.all-feature-mobile .single .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.all-feature-mobile .single .name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    text-transform: capitalize;
}

.all-cards-mobile .single-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%) !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    margin-bottom: 12px !important;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.all-cards-mobile .single-card:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%) !important;
    border-color: rgba(102, 126, 234, 0.4) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.all-cards-mobile .single-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.3) !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.all-cards-mobile .single-card .icon i {
    font-size: 24px;
    color: #ffffff !important;
}

.all-cards-mobile .single-card .content {
    flex: 1;
}

.all-cards-mobile .single-card .content .amount {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 4px;
}

.all-cards-mobile .single-card .content .name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Load More Button */
.centered {
    text-align: center;
    margin-top: 16px;
    padding: 10px 0;
}

.moreless-button,
.moreless-button-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 35px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer !important;
    display: inline-block !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.moreless-button:hover,
.moreless-button-2:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}

/* === MOBILE BOTTOM NAVIGATION === */
.mobile-bottom-nav {
    background: rgba(15, 25, 35, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(102, 126, 234, 0.2) !important;
}

.mobile-bottom-nav a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: #667eea !important;
}

/* === MOBILE HEADER === */
.mobile-header {
    background: rgba(15, 25, 35, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2) !important;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .panel-layout {
        background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #0f1923 100%) !important;
    }
    
    .site-card {
        margin-bottom: 16px !important;
        border-radius: 12px !important;
    }
    
    .site-card-header {
        padding: 16px !important;
    }
    
    .site-card-header .title {
        font-size: 16px !important;
    }
    
    .site-card-body {
        padding: 16px !important;
    }
    
    .table {
        font-size: 13px;
    }
    
    .site-badge {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }
    
    .site-btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    /* Mobile input adjustments */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="date"],
    textarea,
    select {
        font-size: 16px !important; /* Prevent zoom on focus */
    }
}

@media (max-width: 576px) {
    .all-feature-mobile {
        padding: 16px;
    }
    
    .all-cards-mobile .single-card {
        padding: 14px !important;
        gap: 12px;
    }
    
    .all-cards-mobile .single-card .icon {
        width: 45px;
        height: 45px;
    }
    
    .all-cards-mobile .single-card .icon i {
        font-size: 20px;
    }
    
    .all-cards-mobile .single-card .content .amount {
        font-size: 18px;
    }
    
    .all-cards-mobile .single-card .content .name {
        font-size: 12px;
    }
}

/* === KEEP ORIGINAL SPACING === */
.user-dashboard-content .user-cards {
    /* Keep original margin/padding */
}

.user-cards .single {
    /* Keep original structure, just enhance colors */
}

