/* ========================================
   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 */
}


/* ========================================
   DROPDOWN, SELECT & DATEPICKER FIXES
   ======================================== */

/* === GENERAL SELECT DROPDOWN FIXES === */
select,
.form-select,
.nice-select,
.form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
}

select:focus,
.form-select:focus,
.nice-select:focus,
.form-control:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
}

/* === SELECT OPTION STYLING === */
select option {
    background: #1a2332 !important;
    color: #ffffff !important;
    padding: 10px !important;
    border: none !important;
}

select option:hover,
select option:focus,
select option:checked {
    background: rgba(102, 126, 234, 0.3) !important;
    color: #ffffff !important;
}

/* === NICE SELECT DROPDOWN === */
.nice-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.nice-select:after {
    border-bottom: 2px solid #ffffff !important;
    border-right: 2px solid #ffffff !important;
}

.nice-select .current {
    color: #ffffff !important;
}

.nice-select .list {
    background: #1a2332 !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    z-index: 9999 !important;
}

.nice-select .option {
    color: #ffffff !important;
    background: transparent !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected {
    background: rgba(102, 126, 234, 0.3) !important;
    color: #ffffff !important;
}

/* === BOOTSTRAP SELECT DROPDOWN === */
.dropdown-menu {
    background: #1a2332 !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    z-index: 9999 !important;
}

.dropdown-item {
    color: #ffffff !important;
    background: transparent !important;
    padding: 10px 15px !important;
    transition: all 0.3s ease !important;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    background: rgba(102, 126, 234, 0.3) !important;
    color: #ffffff !important;
}

/* === DATEPICKER FIXES === */
.datepicker,
.ui-datepicker,
.bootstrap-datepicker {
    background: #1a2332 !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    z-index: 9999 !important;
    color: #ffffff !important;
}

.datepicker table,
.ui-datepicker table {
    background: transparent !important;
}

.datepicker td,
.datepicker th,
.ui-datepicker td,
.ui-datepicker th {
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
}

.datepicker .day,
.ui-datepicker .ui-state-default {
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.datepicker .day:hover,
.datepicker .day.focused,
.ui-datepicker .ui-state-default:hover,
.ui-datepicker .ui-state-hover {
    background: rgba(102, 126, 234, 0.3) !important;
    color: #ffffff !important;
}

.datepicker .day.active,
.datepicker .day.today,
.ui-datepicker .ui-state-active,
.ui-datepicker .ui-state-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
}

.datepicker .prev,
.datepicker .next,
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    color: #ffffff !important;
    background: rgba(102, 126, 234, 0.2) !important;
    border-radius: 6px !important;
}

.datepicker .prev:hover,
.datepicker .next:hover,
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    background: rgba(102, 126, 234, 0.4) !important;
}

/* === JQUERY UI DATEPICKER === */
.ui-datepicker-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 8px 8px 0 0 !important;
}

.ui-datepicker-title {
    color: #ffffff !important;
}

.ui-datepicker-calendar {
    background: transparent !important;
}

.ui-datepicker-calendar thead th {
    background: rgba(102, 126, 234, 0.1) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600 !important;
}

/* === BOOTSTRAP DATEPICKER === */
.bootstrap-datepicker .datepicker-days .table-condensed thead,
.bootstrap-datepicker .datepicker-months .table-condensed thead,
.bootstrap-datepicker .datepicker-years .table-condensed thead {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%) !important;
}

.bootstrap-datepicker .datepicker-days .table-condensed thead th,
.bootstrap-datepicker .datepicker-months .table-condensed thead th,
.bootstrap-datepicker .datepicker-years .table-condensed thead th {
    color: #ffffff !important;
    border: none !important;
}

/* === INPUT DATE FIXES === */
input[type="date"],
input[type="datetime-local"],
input[type="time"] {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
}

input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="time"]:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

/* === DATE INPUT CALENDAR ICON === */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1) !important;
    cursor: pointer !important;
}

/* === FORM GROUP ENHANCEMENTS === */
.form-group label,
.form-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.form-text,
.help-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* === PAYMENT METHOD DROPDOWN SPECIFIC === */
.payment-method-select,
.gateway-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    min-height: 50px !important;
    padding: 12px 15px !important;
}

.payment-method-select option,
.gateway-select option {
    background: #1a2332 !important;
    color: #ffffff !important;
    padding: 12px !important;
}

/* === MOBILE SPECIFIC FIXES === */
@media (max-width: 768px) {
    select,
    .form-select,
    .nice-select {
        font-size: 16px !important; /* Prevent zoom on iOS */
        min-height: 50px !important;
    }
    
    .nice-select .list {
        max-height: 200px !important;
        overflow-y: auto !important;
    }
    
    .datepicker,
    .ui-datepicker {
        font-size: 14px !important;
    }
}

/* === ENSURE HIGH Z-INDEX FOR DROPDOWNS === */
.nice-select .list,
.dropdown-menu,
.datepicker,
.ui-datepicker,
.bootstrap-datepicker {
    z-index: 99999 !important;
    position: absolute !important;
}

/* === CUSTOM SCROLLBAR FOR DROPDOWNS === */
.nice-select .list::-webkit-scrollbar,
.dropdown-menu::-webkit-scrollbar {
    width: 6px !important;
}

.nice-select .list::-webkit-scrollbar-track,
.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1) !important;
}

.nice-select .list::-webkit-scrollbar-thumb,
.dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5) !important;
    border-radius: 3px !important;
}

.nice-select .list::-webkit-scrollbar-thumb:hover,
.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7) !important;
}

/* === PLACEHOLDER TEXT === */
::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* === ADDITIONAL INPUT TYPES === */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
}

/* === ENSURE VISIBILITY ON ALL THEMES === */
body.dark-theme select,
body.dark-theme .form-select,
body.dark-theme .nice-select,
body.dark-theme .dropdown-menu,
body.dark-theme .datepicker {
    background: #1a2332 !important;
    color: #ffffff !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
}

body.light-theme select,
body.light-theme .form-select,
body.light-theme .nice-select,
body.light-theme .dropdown-menu,
body.light-theme .datepicker {
    background: #ffffff !important;
    color: #333333 !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

body.light-theme select option,
body.light-theme .dropdown-item,
body.light-theme .nice-select .option {
    background: #ffffff !important;
    color: #333333 !important;
}

body.light-theme select option:hover,
body.light-theme .dropdown-item:hover,
body.light-theme .nice-select .option:hover {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #333333 !important;
}

/* ========================================
   NOTIFICATION DROPDOWN FIXES
   ======================================== */

/* === NOTIFICATION BUTTON === */
.notification-dot {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 10px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.notification-dot:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
}

.notification-dot i {
    width: 20px !important;
    height: 20px !important;
    color: #ffffff !important;
}

.notification-dot .number {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%) !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 10px !important;
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    min-width: 18px !important;
    text-align: center !important;
}

/* === NOTIFICATION DROPDOWN === */
.notification-pop {
    background: #1a2332 !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    z-index: 99999 !important;
    min-width: 350px !important;
    max-width: 400px !important;
    padding: 0 !important;
    margin-top: 10px !important;
}

.notification-pop .noti-head {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%) !important;
    color: #ffffff !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: 12px 12px 0 0 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.notification-pop .noti-head span {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%) !important;
    color: #ffffff !important;
    padding: 4px 8px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

/* === NOTIFICATION LIST === */
.notification-pop .all-noti {
    max-height: 300px !important;
    overflow-y: auto !important;
    padding: 10px 0 !important;
}

.notification-pop .single-noti {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease !important;
}

.notification-pop .single-noti:last-child {
    border-bottom: none !important;
}

.notification-pop .single-noti:hover {
    background: rgba(102, 126, 234, 0.1) !important;
}

.notification-pop .single-noti a {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    padding: 15px 20px !important;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.notification-pop .single-noti a.read {
    opacity: 0.7 !important;
}

.notification-pop .single-noti .icon {
    width: 40px !important;
    height: 40px !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.notification-pop .single-noti .icon i {
    width: 20px !important;
    height: 20px !important;
    color: #ffffff !important;
}

.notification-pop .single-noti .content {
    flex: 1 !important;
    min-width: 0 !important;
}

.notification-pop .single-noti .content .main-cont {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin-bottom: 5px !important;
    word-wrap: break-word !important;
}

.notification-pop .single-noti .content .main-cont span {
    color: #667eea !important;
    font-weight: 700 !important;
}

.notification-pop .single-noti .content .time {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

/* === NOTIFICATION FOOTER === */
.notification-pop .noti-footer {
    padding: 15px 20px !important;
    border-top: 1px solid rgba(102, 126, 234, 0.2) !important;
    background: rgba(15, 25, 35, 0.5) !important;
    border-radius: 0 0 12px 12px !important;
    display: flex !important;
    gap: 10px !important;
}

.notification-pop .noti-footer .noti-btn-1,
.notification-pop .noti-footer .noti-btn-2 {
    padding: 10px 15px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    flex: 1 !important;
}

.notification-pop .noti-footer .noti-btn-1 {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

.notification-pop .noti-footer .noti-btn-1:hover {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4) !important;
}

.notification-pop .noti-footer .noti-btn-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

.notification-pop .noti-footer .noti-btn-2:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;
}

/* === NOTIFICATION EMPTY STATE === */
.notification-pop .all-noti p {
    color: rgba(255, 255, 255, 0.7) !important;
    text-align: center !important;
    padding: 30px 20px !important;
    font-style: italic !important;
    font-size: 14px !important;
}

/* === NOTIFICATION SCROLLBAR === */
.notification-pop .all-noti::-webkit-scrollbar {
    width: 6px !important;
}

.notification-pop .all-noti::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1) !important;
}

.notification-pop .all-noti::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5) !important;
    border-radius: 3px !important;
}

.notification-pop .all-noti::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7) !important;
}

/* === MOBILE NOTIFICATION FIXES === */
@media (max-width: 768px) {
    .notification-pop {
        min-width: 300px !important;
        max-width: 320px !important;
        margin-top: 5px !important;
    }
    
    .notification-pop .noti-head {
        padding: 12px 15px !important;
        font-size: 14px !important;
    }
    
    .notification-pop .single-noti a {
        padding: 12px 15px !important;
        gap: 12px !important;
    }
    
    .notification-pop .single-noti .icon {
        width: 35px !important;
        height: 35px !important;
    }
    
    .notification-pop .single-noti .icon i {
        width: 18px !important;
        height: 18px !important;
    }
    
    .notification-pop .single-noti .content .main-cont {
        font-size: 13px !important;
    }
    
    .notification-pop .single-noti .content .time {
        font-size: 11px !important;
    }
    
    .notification-pop .noti-footer {
        padding: 12px 15px !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .notification-pop .noti-footer .noti-btn-1,
    .notification-pop .noti-footer .noti-btn-2 {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
}

/* === LANGUAGE DROPDOWN FIXES === */
.language-dropdown,
.lang-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
}

.language-dropdown option,
.lang-select option {
    background: #1a2332 !important;
    color: #ffffff !important;
    padding: 8px !important;
}

/* === HEADER ICON FIXES === */
.header-icons .item {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 8px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.header-icons .item:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
}

.header-icons .item i {
    width: 18px !important;
    height: 18px !important;
    color: #ffffff !important;
}

/* === ENSURE PROPER Z-INDEX === */
.dropdown-menu.notification-pop {
    z-index: 99999 !important;
    position: absolute !important;
}

/* === FIX FOR DARK BACKGROUNDS === */
.notification-pop * {
    box-sizing: border-box !important;
}

.notification-pop .single-noti a:hover {
    color: #ffffff !important;
}

.notification-pop .single-noti a:focus {
    color: #ffffff !important;
    outline: none !important;
}
/* ========================================
   USER HEADER SPECIFIC FIXES
   ======================================== */

/* === NOTIFICATION ICON SIZE FIX === */
.single-nav-right .notification-dot i {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
}

.single-nav-right .notification-dot {
    padding: 8px !important;
    width: auto !important;
    height: auto !important;
}

.single-nav-right .notification-dot .number {
    font-size: 10px !important;
    padding: 1px 5px !important;
    min-width: 16px !important;
    height: 16px !important;
    line-height: 14px !important;
    top: -3px !important;
    right: -3px !important;
}

/* === LANGUAGE DROPDOWN FIX === */
.single-right .site-nice-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    min-width: 120px !important;
}

.single-right .site-nice-select .current {
    color: #ffffff !important;
    font-weight: 500 !important;
}

.single-right .site-nice-select:after {
    border-bottom: 2px solid #ffffff !important;
    border-right: 2px solid #ffffff !important;
    width: 6px !important;
    height: 6px !important;
}

.single-right .site-nice-select .list {
    background: #1a2332 !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    z-index: 99999 !important;
    min-width: 120px !important;
}

.single-right .site-nice-select .option {
    color: #ffffff !important;
    background: transparent !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
}

.single-right .site-nice-select .option:hover,
.single-right .site-nice-select .option.selected {
    background: rgba(102, 126, 234, 0.3) !important;
    color: #ffffff !important;
}

/* === USER DROPDOWN ICON FIX === */
.single-right .item i {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
}

.single-right .item {
    padding: 8px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
}

/* === COLOR SWITCHER ICON FIX === */
.color-switcher i {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
}

/* === MOBILE HEADER FIXES === */
@media (max-width: 768px) {
    .single-nav-right .notification-dot i {
        width: 14px !important;
        height: 14px !important;
        font-size: 14px !important;
    }
    
    .single-nav-right .notification-dot {
        padding: 6px !important;
    }
    
    .single-nav-right .notification-dot .number {
        font-size: 9px !important;
        padding: 1px 4px !important;
        min-width: 14px !important;
        height: 14px !important;
        line-height: 12px !important;
    }
    
    .single-right .site-nice-select {
        min-width: 100px !important;
        font-size: 13px !important;
        padding: 6px 10px !important;
    }
}