:root {
    --bg-dark: #050505;
    --bg-card: #101015;
    --bg-sidebar: #0a0a0c;
    --primary: #6200EA;
    --primary-hover: #7c4dff;
    --accent: #00E5FF;
    --success: #00E676;
    --warning: #FFD700;
    --danger: #FF1744;
    --text-main: #ffffff;
    --text-muted: #888888;
    --border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(98, 0, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 230, 118, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(98, 0, 234, 0.02) 0%, transparent 50%),
        linear-gradient(0deg, rgba(0, 229, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Utilities */
.glass-panel {
    background: rgba(16, 16, 21, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.btn {
    transition: all 0.2s;
}

.btn:active {
    transform: scale(0.98);
}

/* Status Badges with Enhanced Neon Effects */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, currentColor, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.status-Published {
    background: rgba(0, 230, 118, 0.2);
    color: var(--success);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3), inset 0 0 10px rgba(0, 230, 118, 0.1);
}

.status-Published:hover {
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.5), inset 0 0 15px rgba(0, 230, 118, 0.2);
    transform: scale(1.05);
}

.status-Paid {
    background: rgba(0, 230, 118, 0.2);
    color: var(--success);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3), inset 0 0 10px rgba(0, 230, 118, 0.1);
}

.status-Paid:hover {
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.5), inset 0 0 15px rgba(0, 230, 118, 0.2);
    transform: scale(1.05);
}

.status-Pending {
    background: rgba(255, 215, 0, 0.2);
    color: var(--warning);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3), inset 0 0 10px rgba(255, 215, 0, 0.1);
}

.status-Pending:hover {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5), inset 0 0 15px rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.status-Draft {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.status-Refunded {
    background: rgba(255, 23, 68, 0.2);
    color: var(--danger);
    border-color: rgba(255, 23, 68, 0.4);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.3), inset 0 0 10px rgba(255, 23, 68, 0.1);
}

.status-Refunded:hover {
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.5), inset 0 0 15px rgba(255, 23, 68, 0.2);
    transform: scale(1.05);
}

.status-Banned {
    background: rgba(255, 23, 68, 0.2);
    color: var(--danger);
    border-color: rgba(255, 23, 68, 0.4);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.3), inset 0 0 10px rgba(255, 23, 68, 0.1);
}

.status-Banned:hover {
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.5), inset 0 0 15px rgba(255, 23, 68, 0.2);
    transform: scale(1.05);
}

.status-Active {
    background: rgba(0, 229, 255, 0.2);
    color: var(--accent);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3), inset 0 0 10px rgba(0, 229, 255, 0.1);
}

.status-Active:hover {
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5), inset 0 0 15px rgba(0, 229, 255, 0.2);
    transform: scale(1.05);
}

/* Event Status Badges */
.status-draft {
    background: rgba(128, 128, 128, 0.2);
    color: #999;
    border-color: rgba(128, 128, 128, 0.4);
    box-shadow: 0 0 8px rgba(128, 128, 128, 0.2);
}

.status-published {
    background: rgba(0, 230, 118, 0.2);
    color: var(--success);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3), inset 0 0 10px rgba(0, 230, 118, 0.1);
}

.status-published:hover {
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.5), inset 0 0 15px rgba(0, 230, 118, 0.2);
    transform: scale(1.05);
}

.status-cancelled {
    background: rgba(255, 23, 68, 0.2);
    color: var(--danger);
    border-color: rgba(255, 23, 68, 0.4);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.3), inset 0 0 10px rgba(255, 23, 68, 0.1);
}

.status-cancelled:hover {
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.5), inset 0 0 15px rgba(255, 23, 68, 0.2);
    transform: scale(1.05);
}

.status-postponed {
    background: rgba(255, 165, 0, 0.2);
    color: #FFA500;
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.3), inset 0 0 10px rgba(255, 165, 0, 0.1);
}

.status-postponed:hover {
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5), inset 0 0 15px rgba(255, 165, 0, 0.2);
    transform: scale(1.05);
}

.status-completed {
    background: rgba(100, 100, 255, 0.2);
    color: #6464FF;
    border-color: rgba(100, 100, 255, 0.4);
    box-shadow: 0 0 10px rgba(100, 100, 255, 0.3), inset 0 0 10px rgba(100, 100, 255, 0.1);
}

.status-completed:hover {
    box-shadow: 0 0 15px rgba(100, 100, 255, 0.5), inset 0 0 15px rgba(100, 100, 255, 0.2);
    transform: scale(1.05);
}

.status-requested {
    background: rgba(255, 215, 0, 0.2);
    color: var(--warning);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3), inset 0 0 10px rgba(255, 215, 0, 0.1);
}

.status-requested:hover {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5), inset 0 0 15px rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

/* Modal Transition */
[x-cloak] {
    display: none !important;
}

.modal-backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.3s ease-out;
}

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

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

/* Neon Card Styles with Enhanced Effects */
.neon-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(98, 0, 234, 0.1);
}

.neon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--accent);
    z-index: 1;
}

.neon-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.neon-card:hover {
    border-color: rgba(98, 0, 234, 0.6);
    box-shadow: 0 8px 30px rgba(98, 0, 234, 0.3), 0 0 0 1px rgba(0, 229, 255, 0.2), 
                0 0 40px rgba(98, 0, 234, 0.2), inset 0 0 30px rgba(0, 229, 255, 0.05);
    transform: translateY(-2px);
}

.neon-card:hover::before {
    height: 3px;
    box-shadow: 0 0 15px var(--primary), 0 0 30px var(--accent), 0 0 45px var(--primary);
}

.neon-card:hover::after {
    opacity: 1;
}

/* Neon Button Styles with Enhanced Glow */
.neon-btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(98, 0, 234, 0.4), 0 0 20px rgba(98, 0, 234, 0.2), 
                inset 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.neon-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.neon-btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(98, 0, 234, 0.6), 0 0 40px rgba(98, 0, 234, 0.4),
                inset 0 0 15px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.neon-btn-primary:hover::before {
    left: 100%;
}

.neon-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(98, 0, 234, 0.4), 0 0 20px rgba(98, 0, 234, 0.2);
}

/* Override Radzen Components */
.rz-layout {
    background: var(--bg-dark) !important;
}

.rz-sidebar {
    background: var(--bg-sidebar) !important;
    border-right: 1px solid var(--border) !important;
}

.rz-header {
    background: rgba(5, 5, 5, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border) !important;
}

.rz-body {
    background: var(--bg-dark) !important;
}

.rz-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 16px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(98, 0, 234, 0.1) !important;
    transition: all 0.3s ease !important;
}

.rz-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: linear-gradient(to right, var(--primary), var(--accent)) !important;
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--accent) !important;
    z-index: 1 !important;
}

.rz-card:hover {
    border-color: rgba(98, 0, 234, 0.6) !important;
    box-shadow: 0 8px 30px rgba(98, 0, 234, 0.3), 0 0 0 1px rgba(0, 229, 255, 0.2), 
                0 0 40px rgba(98, 0, 234, 0.2) !important;
    transform: translateY(-2px) !important;
}

.rz-card:hover::before {
    height: 3px !important;
    box-shadow: 0 0 15px var(--primary), 0 0 30px var(--accent), 0 0 45px var(--primary) !important;
}

.rz-button-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(98, 0, 234, 0.3) !important;
}

.rz-button-primary:hover {
    background: var(--primary-hover) !important;
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.4) !important;
}

.rz-text {
    color: var(--text-main) !important;
}

.rz-text-secondary {
    color: var(--text-muted) !important;
}

/* Custom Sidebar Styles */
.custom-sidebar {
    width: 256px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
}

.custom-sidebar.collapsed {
    width: 80px;
}

.custom-sidebar-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 32px;
}

.custom-sidebar-header .logo-icon {
    color: var(--primary);
    font-size: 24px;
}

.custom-sidebar-header .logo-text {
    transition: opacity 0.3s ease;
}

.custom-sidebar.collapsed .logo-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.custom-nav {
    flex: 1;
    padding: 0 16px;
    overflow-y: auto;
}

.custom-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 12px;
    color: #888;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 6px;
    cursor: pointer;
}

.custom-nav-item:hover {
    background: rgba(98, 0, 234, 0.1);
    color: var(--primary);
}

.custom-nav-item.active {
    background: rgba(98, 0, 234, 0.1);
    color: var(--primary);
    font-weight: 600;
}

.custom-nav-item i {
    width: 24px;
    text-align: center;
    font-size: 18px;
}

.custom-nav-item span {
    transition: opacity 0.3s ease;
}

.custom-sidebar.collapsed .custom-nav-item span {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.custom-sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--border);
}

.custom-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-user-profile:hover {
    background: rgba(255, 255, 255, 0.05);
}

.custom-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-user-info {
    flex: 1;
    transition: opacity 0.3s ease;
}

.custom-sidebar.collapsed .custom-user-info {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.custom-user-name {
    font-size: 14px;
    font-weight: 600;
}

.custom-user-role {
    font-size: 12px;
    color: #666;
}

/* Custom Header Styles */
.custom-header {
    height: 64px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.custom-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.custom-header-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--text-main), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.custom-header-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.custom-header-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.custom-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.custom-main.sidebar-collapsed {
    margin-left: 10px;
}

.custom-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 32px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
    max-width: 100%;
    width: 100%;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(98, 0, 234, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--accent);
    z-index: 1;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat-card:hover {
    border-color: rgba(98, 0, 234, 0.6);
    box-shadow: 0 8px 30px rgba(98, 0, 234, 0.3), 0 0 0 1px rgba(0, 229, 255, 0.2), 
                0 0 40px rgba(98, 0, 234, 0.2), inset 0 0 30px rgba(0, 229, 255, 0.05);
    transform: translateY(-2px);
}

.stat-card:hover::before {
    height: 3px;
    box-shadow: 0 0 15px var(--primary), 0 0 30px var(--accent), 0 0 45px var(--primary);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-label {
    color: #888;
    font-size: 14px;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--text-main), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-change {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-change.positive {
    color: var(--success);
}

.stat-change.negative {
    color: var(--danger);
}

/* Table Styles with Enhanced Neon Effects */
.neon-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(98, 0, 234, 0.1), 0 0 40px rgba(0, 229, 255, 0.05);
}

.neon-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    z-index: 1;
}

.neon-table table {
    width: 100%;
    border-collapse: collapse;
}

.neon-table thead {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-bottom: 1px solid rgba(98, 0, 234, 0.3);
    box-shadow: 0 2px 10px rgba(98, 0, 234, 0.1);
}

.neon-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
}

.neon-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.neon-table td {
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    vertical-align: middle;
}

.neon-table tbody tr {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.neon-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neon-table tbody tr:hover {
    background: rgba(98, 0, 234, 0.08);
    box-shadow: 0 0 15px rgba(98, 0, 234, 0.2), inset 0 0 20px rgba(0, 229, 255, 0.05);
    transform: translateX(2px);
}

.neon-table tbody tr:hover::before {
    opacity: 1;
}

.neon-table tbody tr:hover td {
    color: var(--text-main);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Form Inputs */
.neon-input {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
}

.neon-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(98, 0, 234, 0.1);
}

.neon-select {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
}

.neon-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(98, 0, 234, 0.1);
}

/* Comprehensive Radzen Component Overrides with Enhanced Neon */
.rz-datagrid {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    box-shadow: 0 0 20px rgba(98, 0, 234, 0.1), 0 0 40px rgba(0, 229, 255, 0.05) !important;
}

.rz-datagrid::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: linear-gradient(to right, var(--primary), var(--accent)) !important;
    z-index: 1 !important;
}

.rz-datagrid-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
    border-bottom: 1px solid rgba(98, 0, 234, 0.3) !important;
    box-shadow: 0 2px 10px rgba(98, 0, 234, 0.1) !important;
}

.rz-datagrid-header-cell {
    color: #888 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    padding: 14px 16px !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
}

.rz-datagrid-header-cell::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 16px !important;
    right: 16px !important;
    height: 1px !important;
    background: linear-gradient(to right, transparent, var(--primary), transparent) !important;
    opacity: 0.5 !important;
}

.rz-datagrid-data-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.rz-datagrid-data-row::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 3px !important;
    background: linear-gradient(180deg, var(--primary), var(--accent)) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.rz-datagrid-data-row:hover {
    background: rgba(98, 0, 234, 0.08) !important;
    box-shadow: 0 0 15px rgba(98, 0, 234, 0.2), inset 0 0 20px rgba(0, 229, 255, 0.05) !important;
    transform: translateX(2px) !important;
}

.rz-datagrid-data-row:hover::before {
    opacity: 1 !important;
}

.rz-datagrid-data-cell {
    padding: 14px 16px !important;
    color: var(--text-main) !important;
    transition: all 0.3s ease !important;
    vertical-align: middle !important;
}

.rz-datagrid-data-row:hover .rz-datagrid-data-cell {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3) !important;
}

.rz-textbox,
.rz-dropdown,
.rz-datepicker {
    background: var(--bg-dark) !important;
    border: 1px solid var(--border) !important;
    color: white !important;
}

.rz-textbox:focus,
.rz-dropdown:focus,
.rz-datepicker:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(98, 0, 234, 0.1) !important;
}

.rz-button-secondary {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-main) !important;
}

.rz-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary) !important;
}

.rz-button-light {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-main) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05) !important;
}

.rz-button-light:hover {
    background: rgba(98, 0, 234, 0.2) !important;
    color: var(--primary) !important;
    border-color: rgba(98, 0, 234, 0.4) !important;
    box-shadow: 0 0 15px rgba(98, 0, 234, 0.4), inset 0 0 10px rgba(98, 0, 234, 0.1) !important;
    transform: translateY(-1px) !important;
}

.rz-button-danger {
    background: rgba(255, 23, 68, 0.2) !important;
    border: 1px solid rgba(255, 23, 68, 0.4) !important;
    color: var(--danger) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.3), inset 0 0 10px rgba(255, 23, 68, 0.1) !important;
}

.rz-button-danger:hover {
    background: rgba(255, 23, 68, 0.3) !important;
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.5), inset 0 0 15px rgba(255, 23, 68, 0.2) !important;
    transform: translateY(-1px) !important;
}

.rz-button-secondary {
    transition: all 0.3s ease !important;
}

.rz-button-secondary:hover {
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.3), inset 0 0 8px rgba(0, 229, 255, 0.1) !important;
    transform: translateY(-1px) !important;
}

.rz-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05) !important;
}

.rz-badge:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15) !important;
}

.rz-badge-success {
    background: rgba(0, 230, 118, 0.2) !important;
    color: var(--success) !important;
    border-color: rgba(0, 230, 118, 0.4) !important;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3), inset 0 0 10px rgba(0, 230, 118, 0.1) !important;
}

.rz-badge-success:hover {
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.5), inset 0 0 15px rgba(0, 230, 118, 0.2) !important;
}

.rz-alert {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    color: var(--text-main) !important;
}

.rz-alert-danger {
    background: rgba(255, 23, 68, 0.1) !important;
    border-color: rgba(255, 23, 68, 0.3) !important;
    color: var(--danger) !important;
}

.rz-alert-info {
    background: rgba(0, 229, 255, 0.1) !important;
    border-color: rgba(0, 229, 255, 0.3) !important;
    color: var(--accent) !important;
}

.rz-dialog {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 16px !important;
}

.rz-dialog-header {
    background: transparent !important;
    border-bottom: 1px solid var(--border) !important;
    color: var(--text-main) !important;
}

.rz-dialog-content {
    background: transparent !important;
    color: var(--text-main) !important;
}

.rz-dialog-footer {
    background: transparent !important;
    border-top: 1px solid var(--border) !important;
}

.rz-paginator {
    background: transparent !important;
    border-top: 1px solid var(--border) !important;
    color: var(--text-main) !important;
}

.rz-paginator-element {
    color: var(--text-main) !important;
}

.rz-paginator-element:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.rz-paginator-element.rz-state-active {
    background: var(--primary) !important;
    color: white !important;
}

/* Custom Layout Override */
.custom-layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Enhanced Content Area with Subtle Neon Accents */
.custom-content {
    position: relative;
}

.custom-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(98, 0, 234, 0.3), rgba(0, 229, 255, 0.3), transparent);
    opacity: 0.5;
    pointer-events: none;
}

/* Enhanced Header with Neon Accent */
.custom-header {
    position: relative;
}

.custom-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(98, 0, 234, 0.4), rgba(0, 229, 255, 0.4), transparent);
    box-shadow: 0 0 10px rgba(98, 0, 234, 0.2);
}

/* Icon Enhancements */
.fa-solid, .fa-regular, .fa-brands {
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
    transition: filter 0.3s ease;
}

.custom-nav-item:hover .fa-solid,
.custom-nav-item.active .fa-solid {
    filter: drop-shadow(0 0 8px currentColor);
    color: var(--primary);
}

/* Enhanced Sidebar Accents */
.custom-sidebar {
    position: relative;
}

.custom-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(98, 0, 234, 0.3), rgba(0, 229, 255, 0.3), transparent);
    box-shadow: 0 0 10px rgba(98, 0, 234, 0.2);
    pointer-events: none;
}

/* Enhanced Stats Grid with Neon Accents */
.stats-grid {
    position: relative;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(circle at 0% 0%, rgba(98, 0, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.stats-grid > * {
    position: relative;
    z-index: 1;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .custom-sidebar {
        transform: translateX(-100%);
    }

    .custom-sidebar.open {
        transform: translateX(0);
    }

    .custom-main {
        margin-left: 0;
    }

    .custom-content {
        padding: 16px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .custom-content {
        padding: 12px 16px;
    }

    .stats-grid {
        gap: 12px;
    }

    .stat-card {
        padding: 16px 20px;
    }
}

