/* =======================================================
   V2 Admin User-Verwaltung (Screenshot-Matched Edition)
   ======================================================= */

.auv2-root {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 40px;
    animation: viewFadeIn 0.5s ease;
}

/* Floating ambient glowing blobs for premium aesthetic depth */
.auv2-root::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.09) 0%, rgba(139, 92, 246, 0) 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
    animation: driftBlobLeft 22s infinite alternate ease-in-out;
}

.auv2-root::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.09) 0%, rgba(34, 211, 238, 0) 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(75px);
    animation: driftBlobRight 26s infinite alternate ease-in-out;
}

@keyframes driftBlobLeft {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(70px, 90px) scale(1.15); }
}

@keyframes driftBlobRight {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-90px, -70px) scale(1.2); }
}

/* =======================================================
   LOG ARCHIVE CARD (Separate from Stats)
   ======================================================= */
.auv2-log-archive-card {
    background: rgba(10, 10, 22, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 16px 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.auv2-log-archive-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.auv2-log-archive-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.auv2-log-archive-title i {
    color: var(--accent-purple);
    font-size: 14px;
}

/* --- Top search & filter bar --- */
.auv2-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background: rgba(12, 12, 28, 0.45);
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(155, 109, 255, 0.12);
}

.auv2-search-box {
    flex: 1;
    position: relative;
    min-width: 280px;
}

.auv2-search-box i {
    position: absolute;
    left: 14px;
    top: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.auv2-search-input {
    width: 100%;
    height: 38px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0 40px;
    color: #fff;
    font-size: 13.5px;
    outline: none;
    transition: var(--transition-smooth);
}

.auv2-search-input:focus {
    border-color: rgba(155, 109, 255, 0.4);
    background: rgba(0, 0, 0, 0.6);
}

.auv2-filter-group {
    display: flex;
    gap: 10px;
}

.auv2-select {
    height: 38px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.auv2-select:focus {
    border-color: rgba(155, 109, 255, 0.4);
}

.auv2-refresh-btn {
    height: 38px;
    background: rgba(155, 109, 255, 0.1);
    border: 1px solid rgba(155, 109, 255, 0.3);
    border-radius: 10px;
    padding: 0 16px;
    color: #c4b5fd;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.auv2-refresh-btn:hover {
    background: rgba(155, 109, 255, 0.2);
    transform: translateY(-1px);
}

.auv2-createnew-btn {
    height: 38px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.35);
    border-radius: 10px;
    padding: 0 18px;
    color: #34d399;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.auv2-createnew-btn:hover {
    background: rgba(52, 211, 153, 0.2);
    border-color: rgba(52, 211, 153, 0.6);
    color: #6ee7b7;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(52, 211, 153, 0.25);
}

/* --- Card Grid (Side-by-Side Desktop) --- */
.auv2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 24px;
}

@media(max-width: 600px) {
    .auv2-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Custom Styled Dropdowns --- */
.auv2-custom-select {
    position: relative;
    width: 150px;
    user-select: none;
}

.auv2-form-field .auv2-custom-select {
    width: 100%;
}

.auv2-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.auv2-select-trigger:hover {
    border-color: rgba(155, 109, 255, 0.3);
}

.auv2-custom-select.open .auv2-select-trigger {
    border-color: var(--accent-purple);
}

.auv2-select-trigger i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.auv2-custom-select.open .auv2-select-trigger i {
    transform: rotate(180deg);
}

.auv2-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #0d0d1b;
    border: 1px solid rgba(155, 109, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    flex-direction: column;
    padding: 6px 0;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.auv2-custom-select.open .auv2-select-options {
    display: flex;
}

.auv2-select-option {
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.auv2-select-option:hover {
    background: rgba(155, 109, 255, 0.15);
    color: #fff;
}

.auv2-select-option.selected {
    color: var(--accent-purple);
    background: rgba(155, 109, 255, 0.05);
}

/* --- Privacy Blur GDPR Layer --- */
.auv2-privacy-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    min-height: 38px;
    overflow: hidden;
}

.auv2-privacy-blur {
    filter: blur(6px);
    opacity: 0.25;
    transition: all 0.3s ease;
    user-select: none;
    pointer-events: none;
    flex-grow: 1;
    display: block;
}

.auv2-privacy-wrapper.revealed .auv2-privacy-blur {
    filter: blur(0);
    opacity: 1;
    user-select: auto;
    pointer-events: auto;
}

.auv2-reveal-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background: linear-gradient(135deg, rgba(20, 10, 35, 0.92) 0%, rgba(9, 9, 20, 0.97) 100%);
    border-radius: 8px;
    border: 1px solid rgba(155, 109, 255, 0.25);
    box-shadow: 0 0 10px rgba(155, 109, 255, 0.1), inset 0 0 8px rgba(155, 109, 255, 0.05);
    transition: all 0.25s ease;
    cursor: pointer;
}

.auv2-reveal-overlay:hover {
    background: linear-gradient(135deg, rgba(28, 14, 50, 0.95) 0%, rgba(12, 12, 26, 0.99) 100%);
    border-color: rgba(167, 139, 250, 0.65);
    box-shadow: 0 0 16px rgba(155, 109, 255, 0.35), inset 0 0 12px rgba(155, 109, 255, 0.15);
}

.auv2-privacy-wrapper.revealed .auv2-reveal-overlay {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
    margin-left: 8px;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.auv2-reveal-btn {
    background: rgba(155, 109, 255, 0.15);
    border: 1px solid rgba(155, 109, 255, 0.45);
    color: #e9d5ff;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 9.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    user-select: none;
}

.auv2-privacy-wrapper.revealed .auv2-reveal-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    padding: 3px 8px;
}

.auv2-privacy-wrapper.revealed .auv2-reveal-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 0 8px rgba(155, 109, 255, 0.2);
}

.auv2-reveal-btn:hover {
    background: rgba(155, 109, 255, 0.25);
    border-color: rgba(155, 109, 255, 0.7);
    color: #fff;
    box-shadow: 0 0 12px rgba(155, 109, 255, 0.45);
    transform: translateY(-0.5px);
}

/* --- User Card Layout (Redesigned Glowing Premium Cards) --- */
.auv2-card {
    background: linear-gradient(135deg, rgba(20, 21, 35, 0.45) 0%, rgba(10, 11, 20, 0.75) 100%);
    border: 1px solid color-mix(in srgb, var(--plan-color, rgba(255, 255, 255, 0.04)) 15%, rgba(255, 255, 255, 0.04));
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

/* Glowing backlight matching the plan color */
.auv2-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--plan-color);
    filter: blur(45px);
    opacity: 0.08;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 0;
}

.auv2-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--plan-color, rgba(255, 255, 255, 0.15)) 40%, rgba(255, 255, 255, 0.15));
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 20px color-mix(in srgb, var(--plan-color) 12%, transparent);
    background: linear-gradient(135deg, rgba(25, 26, 42, 0.55) 0%, rgba(14, 15, 27, 0.85) 100%);
}

.auv2-card:hover::before {
    opacity: 0.15;
    width: 140px;
    height: 140px;
}

/* Colored glowing line at the top edge of the cards */
.auv2-stripe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px;
    z-index: 10 !important;
    background: var(--plan-color);
    border-radius: 18px 18px 0 0;
    transition: box-shadow 0.3s ease;
}

.auv2-stat-card .auv2-stripe {
    border-radius: 20px 20px 0 0; /* Match stat-card border-radius */
}

/* Stat card specific background colors using existing theme classes */
.auv2-stat-card.purple .auv2-stripe { background: linear-gradient(90deg, #e9d5ff, #c084fc, #9b6dff); box-shadow: 0 2px 12px rgba(155, 109, 255, 0.65); }
.auv2-stat-card.emerald .auv2-stripe { background: linear-gradient(90deg, #d1fae5, #34d399, #10b981); box-shadow: 0 2px 12px rgba(16, 185, 129, 0.65); }
.auv2-stat-card.rose .auv2-stripe { background: linear-gradient(90deg, #ffe4e6, #fb7185, #f43f5e); box-shadow: 0 2px 12px rgba(244, 63, 94, 0.65); }
.auv2-stat-card.cyan .auv2-stripe { background: linear-gradient(90deg, #cffafe, #22d3ee, #06b6d4); box-shadow: 0 2px 12px rgba(34, 211, 238, 0.65); }

/* Hover glow for user cards */
.auv2-card:hover .auv2-stripe {
    box-shadow: 0 4px 20px var(--plan-color), 0 0 35px color-mix(in srgb, var(--plan-color) 70%, transparent) !important;
}

/* Hover glow for stat cards */
.auv2-stat-card.purple:hover .auv2-stripe { box-shadow: 0 4px 20px rgba(155, 109, 255, 0.9), 0 0 35px rgba(155, 109, 255, 0.7) !important; }
.auv2-stat-card.emerald:hover .auv2-stripe { box-shadow: 0 4px 20px rgba(16, 185, 129, 0.9), 0 0 35px rgba(16, 185, 129, 0.7) !important; }
.auv2-stat-card.rose:hover .auv2-stripe { box-shadow: 0 4px 20px rgba(244, 63, 94, 0.9), 0 0 35px rgba(244, 63, 94, 0.7) !important; }
.auv2-stat-card.cyan:hover .auv2-stripe { box-shadow: 0 4px 20px rgba(34, 211, 238, 0.9), 0 0 35px rgba(34, 211, 238, 0.7) !important; }

.auv2-card.bulk-selected {
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.4) !important;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

/* Card Plan Watermark Icon */
.auv2-card .card-watermark {
    position: absolute;
    bottom: 20px;
    right: -10px;
    font-size: 80px;
    color: var(--plan-color);
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    transition: all 0.3s ease;
}

.auv2-card:hover .card-watermark {
    opacity: 0.06;
    transform: scale(1.1) rotate(-10deg);
}

/* Detailed Info Grid */
.auv2-card-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    z-index: 1;
}

.auv2-info-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auv2-info-cell.span-2 {
    grid-column: span 2;
}

.auv2-info-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
}

.auv2-info-value {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.auv2-info-value.status-val.emerald {
    color: #10b981;
}

.auv2-info-value.status-val.rose {
    color: #ef4444;
}

.auv2-info-value.role-val {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
}

.auv2-info-value.role-val.owner {
    color: #fbbf24;
}

.auv2-info-value.role-val.admin {
    color: #f43f5e;
}

.auv2-info-value.role-val.user {
    color: #3b82f6;
}

/* Progress wrappers */
.auv2-progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 2px;
}

.auv2-progress-wrapper .progress-text {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.auv2-progress-bg {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.auv2-progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Card Header */
.auv2-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 12px;
    z-index: 1;
}

.auv2-card .avatar-container {
    position: relative;
    width: 44px;
    height: 44px;
}

.auv2-card .avatar-circle {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.auv2-card .status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #0f111a;
}

.auv2-card .status-indicator.online { background: #10b981; }
.auv2-card .status-indicator.offline { background: #64748b; }
.auv2-card .status-indicator.banned { background: #ef4444; }

.auv2-card .user-identity {
    display: flex;
    flex-direction: column;
}

.auv2-card .user-identity .username {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.auv2-card .user-identity .discord-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.auv2-card .plan-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    background: color-mix(in srgb, var(--plan-color) 8%, rgba(255, 255, 255, 0.02));
    border: 1px solid color-mix(in srgb, var(--plan-color) 20%, rgba(255, 255, 255, 0.04));
    color: var(--plan-color);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer & Action Buttons */
.auv2-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    z-index: 1;
    gap: 8px;
    width: 100%;
}

.auv2-card .action-btn {
    flex-grow: 1;
    height: 38px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.auv2-card .action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.auv2-card .action-btn.edit:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.25));
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.15);
}

.auv2-card .action-btn.suspend:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.25));
    border-color: rgba(245, 158, 11, 0.4);
    color: #fbbf24;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.15);
}

.auv2-card .action-btn.delete {
    flex-grow: 0;
    width: 38px;
    padding: 0;
}

.auv2-card .action-btn.delete:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.25));
    border-color: rgba(239, 68, 68, 0.4);
    color: #f87171;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.15);
}



.auv2-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.auv2-card-profile {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.auv2-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease;
}

.auv2-avatar.owner { 
    border: 2px solid #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(217, 119, 6, 0.35) 100%); 
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.25), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.auv2-avatar.admin { 
    border: 2px solid #22d3ee;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(8, 145, 178, 0.35) 100%); 
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.25), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.auv2-avatar.user { 
    border: 2px solid #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(109, 40, 217, 0.35) 100%); 
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.25), 0 4px 12px rgba(0, 0, 0, 0.35);
}

@keyframes online-pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

@keyframes banned-pulse {
    0% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(248, 113, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0); }
}

.auv2-avatar .status-dot {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2.5px solid #0d0f14;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.auv2-avatar .status-dot.online { 
    background: #34d399; 
    animation: online-pulse 2s infinite;
}
.auv2-avatar .status-dot.offline { 
    background: #64748b; 
}
.auv2-avatar .status-dot.banned { 
    background: #f87171; 
    animation: banned-pulse 2s infinite;
}

.auv2-card-name-info {
    display: flex;
    flex-direction: column;
}

.auv2-card-name-info h3 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.auv2-card-id-row {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* Online/Offline glowing tags */
.auv2-online-tag {
    font-size: 9px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.auv2-online-tag.online {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.2);
}
.auv2-online-tag.offline {
    background: rgba(100, 116, 139, 0.15);
    color: #94a3b8;
    border: 1px solid rgba(100, 116, 139, 0.2);
}
.auv2-online-tag.banned {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

/* Mini Bots limit progress bar inside card */
.auv2-mini-progress-bar-wrap {
    margin-top: 2px;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 8px 12px;
    border-radius: 10px;
}
.auv2-mini-progress-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}
.auv2-mini-progress-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--accent-purple);
}
.auv2-mini-progress-fill.custom-bot {
    background: #fbbf24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}
.auv2-mini-progress-fill.pro {
    background: #22d3ee;
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}
.auv2-mini-progress-fill.premium {
    background: #8b5cf6;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}
.auv2-mini-progress-fill.free {
    background: #64748b;
}

.auv2-badges-group {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.auv2-badge-status {
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.auv2-badge-status.active {
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #34d399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.1);
}

.auv2-badge-status.banned {
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #f87171;
    box-shadow: 0 0 8px rgba(248, 113, 113, 0.15);
}

.auv2-badge-role {
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

.auv2-badge-role.owner {
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.05);
}

.auv2-badge-role.admin {
    border-color: rgba(34, 211, 238, 0.3);
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.05);
}

.auv2-badge-plan {
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.auv2-badge-plan.free {
    background: rgba(168, 178, 193, 0.08);
    border: 1px solid rgba(168, 178, 193, 0.2);
    color: var(--accent-silver);
}

.auv2-badge-plan.premium {
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    color: #c4b5fd;
    box-shadow: 0 0 8px rgba(167, 139, 250, 0.12);
}

.auv2-badge-plan.custom-bot {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.12);
}

.auv2-badge-plan.pro {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: #22d3ee;
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.12);
}

/* --- Redesigned Data Grid (Micro-panels) --- */
.auv2-card-rows {
    display: grid;
    grid-template-columns: 1.3fr 1.1fr 0.8fr;
    gap: 12px;
    margin-bottom: 22px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.auv2-row-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.auv2-row-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.auv2-row-item label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.auv2-row-item label i {
    font-size: 10px;
    opacity: 0.7;
}

.auv2-row-item span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auv2-row-item span.emerald { 
    color: var(--accent-emerald);
    text-shadow: 0 0 10px rgba(52, 211, 153, 0.25);
}
.auv2-row-item span.rose { 
    color: var(--accent-rose);
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.25);
}

/* --- Expanded Sub-grid --- */
.auv2-expanded-details {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 10px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
    animation: slideDownFade 0.35s ease forwards;
}

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

@media(max-width: 800px) {
    .auv2-expanded-details {
        grid-template-columns: 1fr;
    }
}

.auv2-expanded-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auv2-col-title {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-purple);
    margin-bottom: 6px;
}

.auv2-grid-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auv2-grid-field label {
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 700;
}

.auv2-grid-field span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.auv2-grid-field span.purple { color: #c4b5fd; }
.auv2-grid-field span.cyan { color: var(--accent-cyan); font-family: monospace; }

/* --- Overhauled Action Buttons --- */
.auv2-btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.auv2-btn {
    height: 36px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.auv2-btn i {
    font-size: 12px;
}

.auv2-btn:hover {
    transform: translateY(-2px);
}

.auv2-btn.details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.auv2-btn.details:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.08);
}

.auv2-btn.edit {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
}

.auv2-btn.edit:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

.auv2-btn.sanktion {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.auv2-btn.sanktion:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.35);
}

.auv2-btn.delete {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.auv2-btn.delete:hover {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.45);
}

/* --- Inline Card Quick Actions --- */
.auv2-quick-actions-bar {
    grid-column: 1 / -1;
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    margin-top: 10px;
}

.auv2-quick-actions-title {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-purple);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.auv2-quick-actions-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.auv2-quick-btn {
    height: 32px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 6px;
}

.auv2-quick-btn:hover {
    transform: translateY(-1px);
    color: #fff;
}

.auv2-quick-btn.cyan {
    border-color: rgba(34, 211, 238, 0.25);
    color: #22d3ee;
}
.auv2-quick-btn.cyan:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.35);
    color: #fff;
}

.auv2-quick-btn.purple {
    border-color: rgba(139, 92, 246, 0.25);
    color: #a78bfa;
}
.auv2-quick-btn.purple:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
    color: #fff;
}

.auv2-quick-btn.amber {
    border-color: rgba(251, 191, 36, 0.25);
    color: #fbbf24;
}
.auv2-quick-btn.amber:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.35);
    color: #fff;
}

.auv2-quick-btn.discord-sync {
    border-color: rgba(88, 101, 242, 0.2);
    color: #818cf8;
}
.auv2-quick-btn.discord-sync:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.auv2-quick-btn.copy-btn {
    border-color: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
}
.auv2-quick-btn.copy-btn:hover {
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: 0 4px 12px rgba(148, 163, 184, 0.2);
}

.auv2-quick-btn.export-btn {
    border-color: rgba(52, 211, 153, 0.2);
    color: #34d399;
}
.auv2-quick-btn.export-btn:hover {
    background: rgba(52, 211, 153, 0.12);
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.25);
}

/* =======================================================
   SUB-PAGE: Benutzer bearbeiten (Edit View)
   ======================================================= */
.auv2-sub-container {
    background: rgba(12, 12, 28, 0.45);
    border: 1px solid rgba(155, 109, 255, 0.12);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auv2-sub-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.auv2-sub-title h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.auv2-sub-title p {
    color: var(--text-muted);
    font-size: 13.5px;
    margin-top: 2px;
}

/* Section Card inside Sub-page Form */
.auv2-form-section {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auv2-form-section-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 8px;
}

/* Structured inputs */
.auv2-input-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.auv2-input-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media(max-width: 768px) {
    .auv2-input-grid-3, .auv2-input-grid-2 {
        grid-template-columns: 1fr;
    }
}

.auv2-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auv2-form-field label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.4);
}

.auv2-input {
    height: 40px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0 14px;
    color: #fff;
    font-size: 13.5px;
    outline: none;
    transition: var(--transition-smooth);
}

.auv2-input:focus {
    border-color: rgba(155, 109, 255, 0.4);
}

/* System info details grid (read-only) */
.auv2-sysinfo-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auv2-sysinfo-card label {
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.35);
}

.auv2-sysinfo-card span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

/* Bottom footer bar */
.auv2-footer-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.auv2-btn-cancel {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.auv2-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.auv2-btn-submit {
    background: linear-gradient(130deg, #7c3aed 0%, #6d28d9 100%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.auv2-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(124, 58, 237, 0.5);
}

/* =======================================================
   SUB-PAGE: Sanktionen / Timeout duration view
   ======================================================= */

/* Presets Grid */
.auv2-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .auv2-time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.auv2-time-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.auv2-time-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.auv2-time-card.active {
    background: rgba(155, 109, 255, 0.06);
    border-color: rgba(155, 109, 255, 0.4);
    box-shadow: inset 0 0 10px rgba(155, 109, 255, 0.05);
}

.auv2-time-card i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
}

.auv2-time-card.active i {
    color: #c4b5fd;
}

.auv2-time-card strong {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.auv2-time-card span {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Status selection helper feedback box */
.auv2-feedback-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* Custom time input row */
.auv2-custom-time-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auv2-custom-time-row input {
    flex: 1;
}

.auv2-yellow-apply-btn {
    height: 40px;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 8px;
    padding: 0 16px;
    color: var(--accent-amber);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.auv2-yellow-apply-btn:hover {
    background: rgba(251, 191, 36, 0.15);
}

/* Permanent ban large trigger button */
.auv2-perm-ban-btn {
    width: 100%;
    height: 48px;
    background: rgba(244, 63, 94, 0.04);
    border: 1px solid rgba(244, 63, 94, 0.35);
    border-radius: 10px;
    color: var(--accent-rose);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.auv2-perm-ban-btn:hover {
    background: rgba(244, 63, 94, 0.15);
    border-color: var(--accent-rose);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.2);
}

.auv2-perm-ban-btn.active {
    background: #e11d48;
    color: #fff;
    border-color: #f43f5e;
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.45);
}

/* Textarea styling */
.auv2-textarea {
    width: 100%;
    min-height: 90px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: 13.5px;
    outline: none;
    resize: vertical;
    transition: var(--transition-smooth);
}

.auv2-textarea:focus {
    border-color: rgba(155, 109, 255, 0.4);
}

/* Red execute sanction button */
.auv2-btn-execute {
    background: linear-gradient(130deg, #f43f5e 0%, #e11d48 100%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.3);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.auv2-btn-execute:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(244, 63, 94, 0.5);
}

/* --- Sanctions History Timeline --- */
.auv2-sanction-history-box {
    margin-top: 12px;
}

.auv2-sanction-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    padding-left: 20px;
    margin-top: 10px;
}

.auv2-sanction-timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.auv2-sanction-item {
    position: relative;
    font-size: 12.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
}

.auv2-sanction-dot {
    position: absolute;
    left: -20px;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #121220;
}

.auv2-sanction-dot.warning {
    background: var(--accent-amber);
    box-shadow: 0 0 6px var(--accent-amber);
}

.auv2-sanction-dot.danger {
    background: var(--accent-rose);
    box-shadow: 0 0 6px var(--accent-rose);
}

.auv2-sanction-date {
    font-size: 10px;
    color: var(--text-muted);
    margin-right: 6px;
    font-weight: 700;
}

/* --- Categorization Headers (Modern Lines & Text) --- */
.auv2-category-section {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auv2-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 4px;
    user-select: none;
}

.auv2-category-header h2 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.auv2-category-section.custom-bot .auv2-category-header h2 {
    color: var(--accent-amber);
}

.auv2-category-section.pro .auv2-category-header h2 {
    color: var(--accent-cyan);
}

.auv2-category-section.premium .auv2-category-header h2 {
    color: var(--accent-purple);
}

.auv2-category-count {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 10.5px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.auv2-category-section.custom-bot .auv2-category-count {
    background: rgba(251, 191, 36, 0.06);
    border-color: rgba(251, 191, 36, 0.2);
    color: var(--accent-amber);
}

.auv2-category-section.pro .auv2-category-count {
    background: rgba(34, 211, 238, 0.06);
    border-color: rgba(34, 211, 238, 0.2);
    color: var(--accent-cyan);
}

.auv2-category-section.premium .auv2-category-count {
    background: rgba(155, 109, 255, 0.06);
    border-color: rgba(155, 109, 255, 0.2);
    color: var(--accent-purple);
}

.auv2-category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
}

.auv2-category-section.custom-bot .auv2-category-line {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.2) 0%, transparent 100%);
}

.auv2-category-section.pro .auv2-category-line {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.2) 0%, transparent 100%);
}

.auv2-category-section.premium .auv2-category-line {
    background: linear-gradient(90deg, rgba(155, 109, 255, 0.2) 0%, transparent 100%);
}

.auv2-category-section.free .auv2-category-header h2 {
    color: #64748b;
}

.auv2-category-section.free .auv2-category-count {
    background: rgba(100, 116, 139, 0.06);
    border-color: rgba(100, 116, 139, 0.2);
    color: #64748b;
}

.auv2-category-section.free .auv2-category-line {
    background: linear-gradient(90deg, rgba(100, 116, 139, 0.2) 0%, transparent 100%);
}

/* --- Plan Badge Modifier for Pro --- */
.auv2-badge-plan.pro {
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.35);
    color: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.15);
}

/* --- COLLAPSIBLE TABS LAYOUT INSIDE EXPANDED CARD --- */
.auv2-card-tabs-header {
    display: flex;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
    margin-bottom: 16px;
    grid-column: 1 / -1;
    overflow-x: auto;
}

.auv2-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 6px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.auv2-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.auv2-tab-btn.active {
    color: var(--accent-purple);
    background: rgba(155, 109, 255, 0.08);
    border: 1px solid rgba(155, 109, 255, 0.25);
}

/* Modifier active colors for tabs matching user roles/plans */
.auv2-card.owner .auv2-tab-btn.active {
    color: var(--accent-amber);
    background: rgba(251, 191, 36, 0.06);
    border-color: rgba(251, 191, 36, 0.25);
}

.auv2-card.admin .auv2-tab-btn.active {
    color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.06);
    border-color: rgba(34, 211, 238, 0.25);
}

/* --- DISCORD STATUS PROFILE WIDGET --- */
.auv2-discord-card {
    background: #111214;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: var(--font-body);
    margin-top: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.auv2-discord-banner {
    height: 52px;
    background: linear-gradient(135deg, #5865f2 0%, #404eed 100%);
    position: relative;
}

.auv2-discord-avatar-wrap {
    position: absolute;
    top: 24px;
    left: 14px;
    width: 54px;
    height: 54px;
    padding: 3px;
    background: #111214;
    border-radius: 50%;
}

.auv2-discord-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #5865f2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-display);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.auv2-discord-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #111214;
}

.auv2-discord-status.online { background: #23a55a; }
.auv2-discord-status.idle { background: #f0b232; }
.auv2-discord-status.dnd { background: #f23f43; }
.auv2-discord-status.offline { background: #80848e; }

.auv2-discord-body {
    padding: 34px 14px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auv2-discord-name-row h4 {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.auv2-discord-name-row span {
    font-size: 10.5px;
    color: #949ba4;
    font-weight: 600;
}

.auv2-discord-info-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auv2-discord-info-field label {
    font-size: 8.5px;
    font-weight: 800;
    text-transform: uppercase;
    color: #b5bac1;
    letter-spacing: 0.5px;
}

.auv2-discord-info-field span {
    font-size: 11.5px;
    color: #dbdee1;
}

.auv2-discord-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}

.auv2-discord-role-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #dbdee1;
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.auv2-discord-role-tag.admin {
    border-color: rgba(34, 211, 238, 0.25);
    color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.03);
}

.auv2-discord-role-tag.owner {
    border-color: rgba(251, 191, 36, 0.25);
    color: var(--accent-amber);
    background: rgba(251, 191, 36, 0.03);
}

/* --- ADMIN STAFF CONTROL PANEL & TIMELINE --- */
.auv2-notes-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
}

.auv2-notes-box-title {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    gap: 6px;
}

.auv2-activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    padding-left: 18px;
    margin-top: 4px;
    max-height: 250px;
    overflow-y: auto;
}

.auv2-activity-timeline::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: rgba(255, 255, 255, 0.04);
}

.auv2-activity-item {
    position: relative;
    font-size: 11.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.auv2-activity-dot {
    position: absolute;
    left: -18px;
    top: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid #121220;
}

.auv2-activity-dot.success { background: var(--accent-emerald); }
.auv2-activity-dot.info { background: var(--accent-cyan); }
.auv2-activity-dot.warn { background: var(--accent-amber); }
.auv2-activity-dot.danger { background: var(--accent-rose); }

.auv2-activity-time {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    margin-right: 6px;
}

/* =======================================================
   RE-DESIGN: Split Layout & KPI Stats
   ======================================================= */

.auv2-header-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.auv2-header-stats {
    flex: 1 1 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.auv2-quick-filter-grid {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(140deg, rgba(17, 18, 26, 0.9) 0%, rgba(9, 11, 20, 0.92) 75%, rgba(19, 16, 38, 0.88) 100%);
    border-radius: 22px;
    padding: 20px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 28px 60px -30px rgba(0, 0, 0, 0.75);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.auv2-quick-filter-grid::before {
    content: "";
    position: absolute;
    inset: -40% -40% auto auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 65%);
    pointer-events: none;
}

.auv2-quick-filter-grid::after {
    content: "";
    position: absolute;
    inset: auto -35% -40% auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.auv2-quick-filter-grid > * {
    position: relative;
    z-index: 2;
}

.auv2-quick-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    margin-bottom: 4px;
}

.auv2-quick-filter-header h3 {
    font-size: 12.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 800;
    color: #f8fafc;
}

#auv2-quick-filter-legend {
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--legend-accent, #8b5cf6);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.auv2-quick-filter-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auv2-quick-filter-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(10, 12, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all .25s ease;
}

.auv2-quick-filter-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all .3s ease;
}

.auv2-quick-filter-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.02);
}

.auv2-quick-filter-card.active {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 16px 35px -20px var(--quick-accent);
    transform: translateY(-1.5px);
}

.auv2-quick-filter-card.active::after {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.auv2-quick-filter-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--quick-accent);
    font-size: 13.5px;
    flex-shrink: 0;
    transition: all .3s ease;
}

.auv2-quick-filter-card.active .auv2-quick-filter-icon {
    background: var(--quick-accent);
    color: #0d0f14;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.auv2-quick-filter-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auv2-quick-filter-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #f8fafc;
}

.auv2-quick-filter-desc {
    font-size: 10.5px;
    color: rgba(226, 232, 240, 0.5);
}

.auv2-quick-filter-pulse {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 65%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.auv2-quick-filter-card.active .auv2-quick-filter-pulse {
    opacity: 0.6;
}

.auv2-quick-panel-footer {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.auv2-quick-action-btn {
    flex: 1 1 120px;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 800;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all .2s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: #f8fafc;
}

.auv2-quick-action-btn:hover {
    transform: translateY(-1.5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.auv2-quick-action-btn.primary {
    background: linear-gradient(120deg, #8b5cf6, #3b82f6);
    border: none;
    box-shadow: 0 12px 30px -15px rgba(59, 130, 246, 0.5);
}

.auv2-quick-action-btn.primary:hover {
    box-shadow: 0 16px 35px -15px rgba(59, 130, 246, 0.65);
}

/* --- Split Main Container & KPI Cards Overhaul --- */
.auv2-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media(max-width: 1200px) {
    .auv2-header-grid {
        flex-direction: column;
    }
    .auv2-header-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .auv2-quick-filter-grid {
        flex: 1 1 auto;
    }
}

@media(max-width: 900px) {
    .auv2-header-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {
    .auv2-header-stats {
        grid-template-columns: 1fr;
    }
}

.auv2-stat-card {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 21, 35, 0.4) 0%, rgba(10, 11, 20, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

/* Glowing backlights behind KPI cards */
.auv2-stat-card::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: -30px;
    right: -30px;
    filter: blur(35px);
    opacity: 0.12;
    transition: all 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.auv2-stat-card.purple::before { background: var(--accent-purple); }
.auv2-stat-card.emerald::before { background: #34d399; }
.auv2-stat-card.rose::before { background: #f87171; }
.auv2-stat-card.cyan::before { background: #22d3ee; }

/* Hover effects */
.auv2-stat-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(20, 21, 35, 0.55) 0%, rgba(10, 11, 20, 0.8) 100%);
}

.auv2-stat-card.purple:hover {
    border-color: rgba(139, 92, 246, 0.55);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.55), 0 0 25px rgba(139, 92, 246, 0.35);
}
.auv2-stat-card.purple:hover::before { opacity: 0.3; width: 110px; height: 110px; }

.auv2-stat-card.emerald:hover {
    border-color: rgba(52, 211, 153, 0.55);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.55), 0 0 25px rgba(52, 211, 153, 0.35);
}
.auv2-stat-card.emerald:hover::before { opacity: 0.3; width: 110px; height: 110px; }

.auv2-stat-card.rose:hover {
    border-color: rgba(248, 113, 113, 0.55);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.55), 0 0 25px rgba(248, 113, 113, 0.35);
}
.auv2-stat-card.rose:hover::before { opacity: 0.3; width: 110px; height: 110px; }

.auv2-stat-card.cyan:hover {
    border-color: rgba(34, 211, 238, 0.55);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.55), 0 0 25px rgba(34, 211, 238, 0.35);
}
.auv2-stat-card.cyan:hover::before { opacity: 0.3; width: 110px; height: 110px; }

/* Icon details */
.auv2-stat-card > i {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.15);
    transition: all 0.35s ease;
}

.auv2-stat-card.emerald > i {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.25);
    color: #34d399;
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.15);
}

.auv2-stat-card.rose > i {
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.25);
    color: #f87171;
    box-shadow: 0 0 12px rgba(248, 113, 113, 0.15);
}

.auv2-stat-card.cyan > i {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.25);
    color: #22d3ee;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.15);
}

/* Hover icon animations */
.auv2-stat-card:hover > i {
    transform: scale(1.1);
}
.auv2-stat-card.purple:hover > i { animation: pulse-icon-purple 1.5s infinite; }
.auv2-stat-card.emerald:hover > i { animation: pulse-icon-emerald 1.5s infinite; }
.auv2-stat-card.rose:hover > i { animation: pulse-icon-rose 1.5s infinite; }
.auv2-stat-card.cyan:hover > i { animation: pulse-icon-cyan 1.5s infinite; }

@keyframes pulse-icon-purple {
    0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(139, 92, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}
@keyframes pulse-icon-emerald {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
@keyframes pulse-icon-rose {
    0% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(248, 113, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0); }
}
@keyframes pulse-icon-cyan {
    0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

.auv2-stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.auv2-stat-info h3 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}

.auv2-stat-info span {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.auv2-stat-sub {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.auv2-stat-sub.emerald { color: #34d399; }
.auv2-stat-sub.rose { color: #f87171; }
.auv2-stat-sub.cyan { color: #22d3ee; }
.auv2-stat-sub.purple { color: #c4b5fd; }

/* Split Main Container */
.auv2-main-split {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

@media(max-width: 1100px) {
    .auv2-main-split {
        flex-direction: column;
        align-items: stretch;
    }
}

.auv2-split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.auv2-split-right {
    width: 420px;
    position: sticky;
    top: 20px;
    flex-shrink: 0;
}

@media(max-width: 1100px) {
    .auv2-split-right {
        width: 100%;
        position: static;
    }
}

/* User Inspector (Redesigned Glassmorphism) */
.auv2-inspector {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 32px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.auv2-inspector.owner {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 35px rgba(251, 191, 36, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.auv2-inspector.admin {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 35px rgba(34, 211, 238, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.auv2-inspector.user {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 35px rgba(139, 92, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.auv2-inspector-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 18px;
}

.auv2-inspector-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.auv2-inspector-title h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

.auv2-inspector-title label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

/* SVG Radial progress bar inside Inspector */
.auv2-radial-wrap {
    position: relative;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auv2-radial-progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.auv2-radial-progress .circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 3.5;
}

.auv2-radial-progress .circle {
    fill: none;
    stroke: #8b5cf6;
    stroke-width: 3.5;
    stroke-linecap: round;
    transition: stroke-dasharray 0.35s ease;
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.5));
}

.auv2-inspector.owner .auv2-radial-progress .circle {
    stroke: #fbbf24;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.5));
}

.auv2-inspector.admin .auv2-radial-progress .circle {
    stroke: #22d3ee;
    filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.5));
}

.auv2-radial-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.auv2-radial-text span {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.auv2-radial-text label {
    font-size: 8px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 1px;
    font-weight: 700;
}

/* Hardware style Tab headers slider capsule */
.auv2-card-tabs-header {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 4px;
    border-radius: 12px;
    display: flex;
    gap: 2px;
    margin-bottom: 24px;
}

.auv2-tab-btn {
    flex: 1;
    text-align: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 10px;
    font-weight: 800;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auv2-tab-btn:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.03);
}

.auv2-tab-btn.active {
    color: #fff !important;
    background: rgba(139, 92, 246, 0.8) !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35) !important;
}

.auv2-inspector.owner .auv2-tab-btn.active {
    background: rgba(251, 191, 36, 0.8) !important;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.35) !important;
}

.auv2-inspector.admin .auv2-tab-btn.active {
    background: rgba(34, 211, 238, 0.8) !important;
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.35) !important;
}

/* User Inspector sub-sections glowing borders */
.auv2-expanded-col .auv2-col-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c4b5fd;
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.2);
    border-left: 2px solid var(--accent-purple);
    padding-left: 8px;
    margin-bottom: 12px;
    margin-top: 10px;
}
.auv2-inspector.owner .auv2-expanded-col .auv2-col-title {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
    border-left-color: #fbbf24;
}
.auv2-inspector.admin .auv2-expanded-col .auv2-col-title {
    color: #22d3ee;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.2);
    border-left-color: #22d3ee;
}

/* Glossy chips for detail properties inside inspector */
.auv2-grid-field {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}
.auv2-grid-field:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}
.auv2-grid-field label {
    font-size: 8.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
}
.auv2-grid-field span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

/* Glowing Quick Action Buttons inside Inspector */
.auv2-quick-btn {
    height: 36px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: rgba(255, 255, 255, 0.75);
}
.auv2-quick-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}
.auv2-quick-btn.cyan:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.4);
}
.auv2-quick-btn.purple:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}
.auv2-quick-btn.amber:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}
.auv2-quick-btn.discord-sync:hover {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(88, 101, 242, 0.4);
}
.auv2-quick-btn.copy-btn:hover {
    background: rgba(148, 163, 184, 0.2) !important;
    border-color: rgba(148, 163, 184, 0.45) !important;
    box-shadow: 0 6px 16px rgba(148, 163, 184, 0.15);
    color: #e2e8f0;
}
.auv2-quick-btn.export-btn:hover {
    background: rgba(52, 211, 153, 0.18) !important;
    border-color: rgba(52, 211, 153, 0.45) !important;
    box-shadow: 0 6px 16px rgba(52, 211, 153, 0.2);
    color: #6ee7b7;
}

/* Hover & Selected active cards */
.auv2-card {
    cursor: pointer;
}

.auv2-card.active-selected {
    border-color: var(--accent-purple) !important;
    transform: translateY(-2px) scale(1.005);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(139, 92, 246, 0.25), inset 0 0 0 1px rgba(139, 92, 246, 0.2) !important;
}

.auv2-card.custom-bot.active-selected {
    border-color: #fbbf24 !important;
    transform: translateY(-2px) scale(1.005);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(251, 191, 36, 0.35), inset 0 0 0 1px rgba(251, 191, 36, 0.25) !important;
}

.auv2-card.pro.active-selected {
    border-color: #22d3ee !important;
    transform: translateY(-2px) scale(1.005);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(34, 211, 238, 0.35), inset 0 0 0 1px rgba(34, 211, 238, 0.25) !important;
}

.auv2-card.premium.active-selected {
    border-color: #8b5cf6 !important;
    transform: translateY(-2px) scale(1.005);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(139, 92, 246, 0.35), inset 0 0 0 1px rgba(139, 92, 246, 0.25) !important;
}

.auv2-card.free.active-selected {
    border-color: #64748b !important;
    transform: translateY(-2px) scale(1.005);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 20px rgba(100, 116, 139, 0.25), inset 0 0 0 1px rgba(100, 116, 139, 0.15) !important;
}

/* Modals Overlay (Add User) */
.auv2-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 7, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.auv2-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.auv2-modal-card {
    width: 100%;
    max-width: 580px;
    background: linear-gradient(145deg, rgba(20, 22, 30, 0.95), rgba(12, 14, 18, 0.98));
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.auv2-modal-overlay.active .auv2-modal-card {
    transform: translateY(0) scale(1);
}

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

.auv2-modal-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.auv2-modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.auv2-modal-close:hover {
    color: #fff;
}

/* --- Collapsible user selection checkbox, log filtering chips, and bulk bar styles --- */
.auv2-card-checkbox-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    z-index: 15;
    align-self: center;
}

.auv2-card-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.auv2-card-checkbox-custom {
    display: block;
    width: 18px;
    height: 18px;
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.auv2-card-checkbox-container:hover .auv2-card-checkbox-custom {
    border-color: var(--accent-purple);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.35);
}

.auv2-card-checkbox-container input:checked ~ .auv2-card-checkbox-custom {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.55);
}

/* --- Log View Glow & Styling --- */
.auv2-log-row {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    padding: 12px 16px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 24px 120px 1fr auto 140px;
    gap: 16px;
    align-items: center;
}
.auv2-log-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Log Dot Colors with Glow */
.auv2-log-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.auv2-log-dot.emerald {
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,0.8), 0 0 24px rgba(34,197,94,0.4);
}
.auv2-log-dot.rose {
    background: #f43f5e;
    box-shadow: 0 0 12px rgba(244,63,94,0.8), 0 0 24px rgba(244,63,94,0.4);
}
.auv2-log-dot.cyan {
    background: #22d3ee;
    box-shadow: 0 0 12px rgba(34,211,238,0.8), 0 0 24px rgba(34,211,238,0.4);
}
.auv2-log-dot.amber {
    background: #fbbf24;
    box-shadow: 0 0 12px rgba(251,191,36,0.8), 0 0 24px rgba(251,191,36,0.4);
}
.auv2-log-dot.purple {
    background: #a78bfa;
    box-shadow: 0 0 12px rgba(167,139,250,0.8), 0 0 24px rgba(167,139,250,0.4);
}
.auv2-log-dot.blue {
    background: #3b82f6;
    box-shadow: 0 0 12px rgba(59,130,246,0.8), 0 0 24px rgba(59,130,246,0.4);
}

/* Log Page Header Styling */
.auv2-log-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}
.auv2-log-page-title-block {
    display: flex;
    align-items: center;
    gap: 16px;
}
.auv2-log-page-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}
.auv2-log-page-icon:hover {
    transform: translateY(-2px);
}
.auv2-log-h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}
.auv2-log-sub {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.auv2-log-badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

/* Log Table Header */
.auv2-log-table-header {
    display: grid;
    grid-template-columns: 24px 120px 1fr auto 140px;
    gap: 16px;
    padding: 0 4px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.auv2-log-th {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Log Cell Styling */
.auv2-log-cell.time {
    font-family: monospace;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
}
.auv2-log-cell.user {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.auv2-log-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.auv2-log-email {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}
.auv2-log-cell.role {
    display: flex;
    align-items: center;
}
.auv2-log-role-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    background: rgba(167,139,250,0.15);
    border: 1px solid rgba(167,139,250,0.35);
    color: #c4b5fd;
    box-shadow: 0 0 10px rgba(167,139,250,0.3);
}
.auv2-log-cell.desc {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}
.auv2-log-cell.ip {
    color: rgba(148,163,184,0.85);
    font-size: 12px;
    font-family: monospace;
}

/* Log Status Badge with Glow */
.auv2-log-status-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}
.auv2-log-status-badge.emerald {
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.35);
    color: #4ade80;
    box-shadow: 0 0 10px rgba(34,197,94,0.3);
}
.auv2-log-status-badge.rose {
    background: rgba(244,63,94,0.15);
    border: 1px solid rgba(244,63,94,0.35);
    color: #f87171;
    box-shadow: 0 0 10px rgba(244,63,94,0.3);
}
.auv2-log-status-badge.amber {
    background: rgba(251,191,36,0.15);
    border: 1px solid rgba(251,191,36,0.35);
    color: #fbbf24;
    box-shadow: 0 0 10px rgba(251,191,36,0.3);
}

/* Log Controls: Search & Sort */
.auv2-log-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 16px;
}
.auv2-log-search-wrap {
    position: relative;
    flex: 1;
    max-width: 450px;
}
.auv2-log-search-wrap i.fa-search {
    position: absolute;
    left: 14px;
    top: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}
.auv2-log-search-input {
    width: 100%;
    height: 40px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0 44px 0 42px;
    color: #fff;
    font-size: 13.5px;
    outline: none;
    transition: all 0.3s ease;
}
.auv2-log-search-input:focus {
    border-color: rgba(167,139,250,0.5);
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 15px rgba(167,139,250,0.2);
}
.auv2-log-search-clear {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: none;
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.auv2-log-search-clear:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.auv2-log-sort-group {
    display: flex;
    gap: 8px;
}
.auv2-log-sort-btn {
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.auv2-log-sort-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}
.auv2-log-sort-btn.active {
    background: rgba(167,139,250,0.15);
    border-color: rgba(167,139,250,0.4);
    color: #c4b5fd;
    box-shadow: 0 0 15px rgba(167,139,250,0.2);
}

.auv2-log-empty {
    text-align: center;
    padding: 48px 24px;
    color: rgba(255,255,255,0.45);
}
.auv2-log-empty i {
    font-size: 48px;
    opacity: 0.3;
    margin-bottom: 16px;
}
.auv2-log-empty p {
    margin:0;
    font-size:15px;
}

.auv2-log-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auv2-card-checkbox-custom::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.auv2-card-checkbox-container input:checked ~ .auv2-card-checkbox-custom::after {
    display: block;
}

/* Bulk actions floating action bar (Redesigned Glassmorphism Pill) */
.auv2-bulk-bar {
    position: fixed;
    bottom: -120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    background: rgba(18, 14, 28, 0.98);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    padding: 14px 32px;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6), 0 -5px 20px rgba(139, 92, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

@media(max-width: 1100px) {
    .auv2-bulk-bar {
        left: 50%;
        min-width: 90%;
    }
}

.auv2-bulk-bar.active {
    bottom: 0;
    opacity: 1;
    pointer-events: auto;
}

.auv2-bulk-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auv2-bulk-info span {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

.auv2-bulk-info label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.auv2-bulk-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auv2-bulk-btn {
    height: 34px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.auv2-bulk-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.auv2-bulk-btn.purple-glow {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.35);
    color: #c4b5fd;
}
.auv2-bulk-btn.purple-glow:hover {
    background: var(--accent-purple);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.auv2-bulk-btn.danger-glow {
    background: rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.35);
    color: #fca5a5;
}
.auv2-bulk-btn.danger-glow:hover {
    background: #e11d48;
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.5);
}

.auv2-bulk-dropdown-wrap {
    position: relative;
}

.auv2-bulk-dropdown {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    background: #0d0d1b;
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 10px;
    padding: 6px 0;
    min-width: 130px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 1600;
}

.auv2-bulk-dropdown.open {
    display: flex;
}

.auv2-bulk-dropdown div {
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.auv2-bulk-dropdown div:hover {
    background: rgba(139, 92, 246, 0.15);
    color: #fff;
}

/* Activity timeline logs search & filters chips styling */
.auv2-log-chip {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    letter-spacing: 0.3px;
}

.auv2-log-chip:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.auv2-log-chip.active {
    color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.15);
}

/* =======================================================
   MODERN SUBVIEW: CREATE USER (Glassmorphism & Neon Glow)
   ======================================================= */

.auv2-create-view-wrapper {
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
}

.auv2-create-card-glow-wrap {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.auv2-create-card-glow-bg {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.15) 0%, transparent 45%),
                radial-gradient(circle at 90% 90%, rgba(34, 211, 238, 0.12) 0%, transparent 45%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.auv2-create-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(16, 17, 27, 0.8) 0%, rgba(10, 11, 18, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px 36px;
    box-shadow: 0 30px 65px -25px rgba(0, 0, 0, 0.85),
                0 0 30px -15px rgba(139, 92, 246, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.auv2-card-section-title {
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.auv2-card-section-title i {
    color: var(--accent-purple);
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.4));
}

.auv2-form-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 28px;
}

.auv2-form-grid-modern-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 28px;
}

.auv2-form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auv2-form-group-modern label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: rgba(226, 232, 240, 0.45);
    display: flex;
    align-items: center;
    gap: 4px;
}

.required-star {
    color: #ef4444;
}

.auv2-input-icon-wrapper {
    position: relative;
    width: 100%;
}

.auv2-input-icon-wrapper .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
    pointer-events: none;
}

.auv2-input-modern {
    width: 100%;
    height: 44px;
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 0 16px 0 40px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.auv2-input-modern::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.auv2-input-modern:focus {
    border-color: rgba(139, 92, 246, 0.55);
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.auv2-input-icon-wrapper:focus-within .input-icon {
    color: var(--accent-purple);
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.3));
}

.auv2-form-footer-modern {
    margin-top: 36px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.auv2-modern-btn-cancel {
    height: 44px;
    padding: 0 24px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auv2-modern-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-1px);
}

.auv2-modern-btn-submit {
    height: 44px;
    padding: 0 28px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6 0%, #4f46e5 100%);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 30px -10px rgba(139, 92, 246, 0.5),
                0 0 10px rgba(139, 92, 246, 0.2);
}

.auv2-modern-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px -8px rgba(139, 92, 246, 0.65),
                0 0 15px rgba(139, 92, 246, 0.35);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .auv2-form-grid-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .auv2-form-grid-modern-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .auv2-create-card {
        padding: 24px;
    }
}

/* ====================================================
   LOG PAGES — Navigation Bar & Full Page Styles
   ==================================================== */

/* ---- Nav Buttons (top of list view) ---- */
.auv2-log-nav-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 4px;
}

.auv2-log-nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.auv2-log-nav-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 4px 6px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.035);
}

.auv2-log-nav-group.auth .auv2-log-group-line {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.7) 0%, rgba(34, 211, 238, 0.25) 100%);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.auv2-log-nav-group.admin .auv2-log-group-line {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.7) 0%, rgba(244, 63, 94, 0.25) 100%);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.15);
}

.auv2-log-group-line {
    width: 42px;
    height: 2px;
    border-radius: 999px;
    flex-shrink: 0;
}

.auv2-log-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 34px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 0.2px;
}
.auv2-log-nav-btn i { font-size: 11px; }
.auv2-log-nav-btn:hover { transform: translateY(-2px); }

.auv2-log-nav-btn.rose {
    background: rgba(244, 63, 94, 0.08);
    border-color: rgba(244, 63, 94, 0.28);
    color: #fb7185;
}
.auv2-log-nav-btn.rose:hover {
    background: linear-gradient(135deg, #f43f5e, #be123c);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.35);
}
.auv2-log-nav-btn.cyan {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.28);
    color: #22d3ee;
}
.auv2-log-nav-btn.cyan:hover {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.35);
}
.auv2-log-nav-btn.emerald {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.28);
    color: #34d399;
}
.auv2-log-nav-btn.emerald:hover {
    background: linear-gradient(135deg, #10b981, #047857);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}
.auv2-log-nav-btn.amber {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.28);
    color: #fbbf24;
}
.auv2-log-nav-btn.amber:hover {
    background: linear-gradient(135deg, #f59e0b, #b45309);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.35);
}
.auv2-log-nav-btn.slate {
    background: rgba(100, 116, 139, 0.08);
    border-color: rgba(100, 116, 139, 0.28);
    color: #94a3b8;
}
.auv2-log-nav-btn.slate:hover {
    background: linear-gradient(135deg, #475569, #334155);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(100, 116, 139, 0.3);
}
.auv2-log-nav-btn.purple {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.28);
    color: #a78bfa;
}
.auv2-log-nav-btn.purple:hover {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}
.auv2-log-nav-btn.blue {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.28);
    color: #60a5fa;
}
.auv2-log-nav-btn.blue:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.auv2-log-nav-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 4px;
    align-self: center;
}

.auv2-log-nav-group-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
    padding: 0 6px;
    align-self: center;
}

/* ---- Log Page Header ---- */
.auv2-log-page-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}
.auv2-log-page-title-block {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 200px;
}
.auv2-log-page-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}
.auv2-log-h2 {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}
.auv2-log-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    margin: 0;
}
.auv2-log-badge {
    height: 33px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ---- Log Table Header ---- */
.auv2-log-table-header {
    display: grid;
    grid-template-columns: 160px 1fr 110px 1fr 130px;
    gap: 12px;
    padding: 10px 20px 10px 44px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
}
.auv2-log-th {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

/* ---- Log Rows ---- */
.auv2-log-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.auv2-log-row {
    display: grid;
    grid-template-columns: 10px 160px 1fr 110px 1fr 130px;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.auv2-log-row:hover {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

/* Status dot */
.auv2-log-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.auv2-log-dot.emerald { background: #34d399; box-shadow: 0 0 8px rgba(52, 211, 153, 0.6); }
.auv2-log-dot.rose    { background: #f87171; box-shadow: 0 0 8px rgba(248, 113, 113, 0.6); }
.auv2-log-dot.cyan    { background: #22d3ee; box-shadow: 0 0 8px rgba(34, 211, 238, 0.6); }
.auv2-log-dot.amber   { background: #fbbf24; box-shadow: 0 0 8px rgba(251, 191, 36, 0.6); }
.auv2-log-dot.purple  { background: #a78bfa; box-shadow: 0 0 8px rgba(167, 139, 250, 0.6); }

/* Cell types */
.auv2-log-cell { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.auv2-log-cell.time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.auv2-log-cell.user { display: flex; flex-direction: column; gap: 2px; }
.auv2-log-cell.desc { font-size: 13px; color: rgba(255, 255, 255, 0.75); }
.auv2-log-cell.ip {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.auv2-log-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #f1f5f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.auv2-log-email {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Role badge */
.auv2-log-role-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 7px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #c4b5fd;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

/* Status badge (ban log) */
.auv2-log-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    white-space: nowrap;
}
.auv2-log-status-badge.emerald {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}
.auv2-log-status-badge.rose {
    background: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.3);
    color: #fb7185;
}
.auv2-log-status-badge.amber {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

/* Text color utility */
.auv2-text-emerald { color: #34d399; }
.auv2-text-rose    { color: #f87171; }

/* Empty state */
.auv2-log-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}
.auv2-log-empty i { font-size: 38px; opacity: 0.3; }
.auv2-log-empty p { font-size: 15px; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
    .auv2-log-table-header { display: none; }
    .auv2-log-row {
        grid-template-columns: 10px 1fr;
        gap: 8px;
    }
    .auv2-log-cell.time,
    .auv2-log-cell.user,
    .auv2-log-cell.role,
    .auv2-log-cell.desc,
    .auv2-log-cell.ip { grid-column: 2; }
}



/* =======================================================
   FUEL PAGE / FULL DETAILS VIEW STYLES
   ======================================================= */
.auv2-details-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: pageFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.auv2-details-back-bar {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 4px;
}

.auv2-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.auv2-back-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.4);
    color: #fff;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.auv2-back-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.auv2-back-btn:hover i {
    transform: translateX(-4px);
}

.details-fullpage {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 500px;
}

.auv2-tab-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    min-height: 250px;
}

@media (max-width: 900px) {
    .auv2-tab-content-grid {
        grid-template-columns: 1fr;
    }
    .auv2-tab-content-grid > .auv2-expanded-col {
        grid-column: span 1 !important;
    }
}
/* =======================================================
   FUEL PAGE - PREMIUM DASHBOARD DESIGN
   ======================================================= */
.auv2-fuel-page-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    animation: pageFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-color);
}

.auv2-fuel-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.auv2-fuel-title {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.auv2-fuel-top-actions {
    display: flex;
    gap: 12px;
}

.auv2-fuel-header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.9), rgba(15, 15, 18, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.auv2-fuel-header-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.auv2-fuel-header-left {
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 1;
}

.auv2-fuel-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    border: 3px solid rgba(255,255,255,0.1);
}

.auv2-fuel-avatar.owner { background: linear-gradient(135deg, #ef4444, #b91c1c); box-shadow: 0 0 20px rgba(239, 68, 68, 0.4); }
.auv2-fuel-avatar.admin { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 0 20px rgba(245, 158, 11, 0.4); }

.auv2-fuel-user-info h2 {
    font-size: 28px;
    margin: 0 0 8px 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.auv2-fuel-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

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

.auv2-fuel-badges .badge.role {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.3);
}
.auv2-fuel-badges .badge.role.owner { background: rgba(239, 68, 68, 0.2); color: #fca5a5; border-color: rgba(239, 68, 68, 0.3); }
.auv2-fuel-badges .badge.role.admin { background: rgba(245, 158, 11, 0.2); color: #fcd34d; border-color: rgba(245, 158, 11, 0.3); }

.auv2-fuel-badges .badge.plan {
    background: color-mix(in srgb, var(--badge-color) 20%, transparent);
    color: var(--badge-color);
    border: 1px solid color-mix(in srgb, var(--badge-color) 30%, transparent);
}

.auv2-fuel-badges .badge.status.active { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.auv2-fuel-badges .badge.status.banned { background: rgba(244, 63, 94, 0.15); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.3); }

.auv2-fuel-subinfo {
    font-size: 12px;
    color: var(--text-muted);
}

.auv2-fuel-header-right {
    z-index: 1;
}

.auv2-fuel-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.auv2-fuel-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auv2-fuel-card {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.auv2-fuel-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.auv2-fuel-card-title i {
    color: var(--accent-purple);
    font-size: 16px;
}

.auv2-fuel-grid-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    background: rgba(0,0,0,0.2);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03);
}

.auv2-fuel-grid-field:last-child {
    margin-bottom: 0;
}

.auv2-fuel-grid-field label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.auv2-fuel-grid-field span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.auv2-fuel-session-item, .auv2-fuel-invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.25);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03);
    margin-bottom: 8px;
}

.auv2-fuel-session-item:last-child, .auv2-fuel-invoice-item:last-child {
    margin-bottom: 0;
}

.auv2-fuel-session-item .sess-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auv2-fuel-session-item .sess-info strong {
    font-size: 13px;
    color: #fff;
}

.auv2-fuel-session-item .sess-info span {
    font-size: 11px;
    color: var(--text-muted);
}

.auv2-fuel-session-item button {
    background: rgba(244, 63, 94, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.auv2-fuel-session-item button:hover {
    background: rgba(244, 63, 94, 0.2);
    transform: scale(1.05);
}

.auv2-fuel-textarea {
    width: 100%;
    min-height: 100px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-size: 13px;
    resize: vertical;
    margin-bottom: 12px;
}

.auv2-fuel-textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.empty-text {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    display: block;
    padding: 12px;
}


/* =======================================================
   FUEL PAGE - ENHANCED PREMIUM GLOW DESIGN
   ======================================================= */
.auv2-fuel-page-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    animation: pageFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-color);
}

.auv2-fuel-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 16px 28px;
    border-radius: 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1), inset 0 0 10px rgba(255,255,255,0.02);
}

.auv2-fuel-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}
.auv2-fuel-title i { color: var(--accent-purple); }

.auv2-fuel-top-actions {
    display: flex;
    gap: 12px;
}

.auv2-fuel-header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.8), rgba(10, 10, 15, 0.95));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 32px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.auv2-fuel-header-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.25), transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.auv2-fuel-header-left {
    display: flex;
    align-items: center;
    gap: 28px;
    z-index: 1;
}

.auv2-fuel-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    border: 4px solid rgba(255,255,255,0.15);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.auv2-fuel-avatar.owner { background: linear-gradient(135deg, #ef4444, #b91c1c); box-shadow: 0 0 30px rgba(239, 68, 68, 0.6); }
.auv2-fuel-avatar.admin { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 0 30px rgba(245, 158, 11, 0.6); }

.auv2-fuel-user-info h2 {
    font-size: 32px;
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.auv2-fuel-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.auv2-fuel-badges .badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.auv2-fuel-badges .badge.role {
    background: rgba(139, 92, 246, 0.25);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}
.auv2-fuel-badges .badge.role.owner { background: rgba(239, 68, 68, 0.25); color: #fca5a5; border-color: rgba(239, 68, 68, 0.5); box-shadow: 0 0 15px rgba(239, 68, 68, 0.3); }
.auv2-fuel-badges .badge.role.admin { background: rgba(245, 158, 11, 0.25); color: #fcd34d; border-color: rgba(245, 158, 11, 0.5); box-shadow: 0 0 15px rgba(245, 158, 11, 0.3); }

.auv2-fuel-badges .badge.plan {
    background: color-mix(in srgb, var(--badge-color) 25%, transparent);
    color: var(--badge-color);
    border: 1px solid color-mix(in srgb, var(--badge-color) 50%, transparent);
    box-shadow: 0 0 15px color-mix(in srgb, var(--badge-color) 30%, transparent);
}

.auv2-fuel-badges .badge.status.active { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.4); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);}
.auv2-fuel-badges .badge.status.banned { background: rgba(244, 63, 94, 0.2); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.4); box-shadow: 0 0 15px rgba(244, 63, 94, 0.2);}

.auv2-fuel-subinfo {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}
.auv2-fuel-subinfo i { color: var(--accent-purple); opacity: 0.8; }

.auv2-fuel-header-right {
    z-index: 1;
}

.auv2-fuel-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.auv2-fuel-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auv2-fuel-card {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3), inset 0 0 20px rgba(255,255,255,0.01);
    backdrop-filter: blur(16px);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.auv2-fuel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.auv2-fuel-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255,255,255,0.2);
}

.auv2-fuel-card-title i {
    color: var(--accent-purple);
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.6));
}

.auv2-fuel-grid-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    background: rgba(0,0,0,0.3);
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s, border-color 0.2s;
}

.auv2-fuel-grid-field:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
}

.auv2-fuel-grid-field:last-child {
    margin-bottom: 0;
}

.auv2-fuel-grid-field label {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.auv2-fuel-grid-field label i {
    color: var(--accent-purple);
    font-size: 13px;
    opacity: 0.8;
}

.auv2-fuel-grid-field span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    text-align: right;
}

.auv2-fuel-session-item, .auv2-fuel-invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 10px;
    transition: all 0.2s;
}
.auv2-fuel-session-item:hover, .auv2-fuel-invoice-item:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateX(2px);
}

.auv2-fuel-session-item:last-child, .auv2-fuel-invoice-item:last-child {
    margin-bottom: 0;
}

.auv2-fuel-session-item .sess-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auv2-fuel-session-item .sess-info strong {
    font-size: 13.5px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.auv2-fuel-session-item .sess-info strong i { color: var(--accent-purple); font-size: 12px; }

.auv2-fuel-session-item .sess-info span {
    font-size: 11.5px;
    color: rgba(255,255,255,0.5);
}

.auv2-fuel-session-item button {
    background: rgba(244, 63, 94, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(244, 63, 94, 0.1);
}

.auv2-fuel-session-item button:hover {
    background: rgba(244, 63, 94, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.auv2-fuel-textarea {
    width: 100%;
    min-height: 100px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px;
    color: #fff;
    font-size: 13px;
    resize: vertical;
    margin-bottom: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.auv2-fuel-textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.auv2-fuel-input {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
    margin-bottom: 12px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.auv2-fuel-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.empty-text {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    display: block;
    padding: 12px;
    text-align: center;
}

/* =======================================================
   BENTO GRID UI & GLASMORPHISM OVERRIDES
   ======================================================= */
.bento-mode {
    padding-bottom: 40px;
}

.auv2-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 20px;
    width: 100%;
}

.auv2-bento-item {
    background: rgba(18, 18, 24, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s, border-color 0.3s;
}

.auv2-bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
}

/* Specific Grid Placements */
.auv2-bento-item.hero {
    grid-column: span 4;
    grid-row: span 2;
    flex-direction: row;
    align-items: center;
    padding: 30px 40px;
}

.auv2-bento-item.personal, 
.auv2-bento-item.security {
    grid-column: span 2;
}

.auv2-bento-item.quick-actions {
    grid-column: span 2;
}

.auv2-bento-item.gdpr {
    grid-column: span 2;
}

.auv2-bento-item.billing, 
.auv2-bento-item.sessions,
.auv2-bento-item.activity {
    grid-column: span 2;
}

.auv2-bento-item.notes {
    grid-column: span 4;
}

/* Flex Column Helper for Privacy Fields */
.auv2-fuel-grid-field.flex-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.auv2-fuel-grid-field.flex-col > span, 
.auv2-fuel-grid-field.flex-col > div {
    width: 100%;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .auv2-bento-item.personal, 
    .auv2-bento-item.security,
    .auv2-bento-item.quick-actions,
    .auv2-bento-item.gdpr,
    .auv2-bento-item.billing, 
    .auv2-bento-item.sessions {
        grid-column: span 4;
    }
}

/* Enhanced Hero Background */
.auv2-bento-item.hero {
    overflow: hidden;
    background: rgba(12, 12, 16, 0.85) !important;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--hero-c1, #a855f7);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 50px;
}

.auv2-bento-hero-bg.animated-mesh {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.auv2-bento-hero-bg.animated-mesh::before {
    content: attr(data-role);
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 140px;
    font-weight: 900;
    background: linear-gradient(to top, rgba(255,255,255,0) 0%, var(--hero-c1, #a855f7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    line-height: 1;
    letter-spacing: -2px;
}

.auv2-bento-hero-bg.animated-mesh::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 80px;
    width: 180px;
    height: 180px;
    background: var(--hero-c1, #a855f7);
    filter: blur(70px);
    transform: translateY(-50%);
    border-radius: 50%;
    opacity: 0.15;
}

/* Enhancing the Avatar */
.auv2-bento-item.hero .auv2-fuel-avatar {
    z-index: 1;
    margin-right: 40px;
    width: 110px; height: 110px;
    font-size: 42px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(255,255,255,0.15);
    border: none;
    position: relative;
}

.auv2-bento-item.hero .hero-info {
    z-index: 1;
    flex: 1;
}

.auv2-bento-item.hero h2 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    background: linear-gradient(to bottom right, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.auv2-bento-item.hero .hero-stats {
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

/* Premium Radial Progress in Hero */
.auv2-bento-item.hero .auv2-radial-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auv2-bento-item.hero .auv2-radial-progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    position: absolute;
    inset: 0;
}

.auv2-bento-item.hero .auv2-radial-progress .circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 3;
}

.auv2-bento-item.hero .auv2-radial-progress .circle {
    fill: none;
    stroke: var(--hero-c1, #a855f7);
    stroke-width: 3.5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px var(--hero-c1, #a855f7));
    transition: stroke-dasharray 1s ease-out;
}

.auv2-bento-item.hero .auv2-radial-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.auv2-bento-item.hero .auv2-radial-text span {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    line-height: 1.1;
}

.auv2-bento-item.hero .auv2-radial-text label {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* Enhanced Hero Info */
.auv2-bento-item.hero h2 {
    font-size: 32px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 12px;
}

.auv2-fuel-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.auv2-fuel-badges .badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}
.sub-meta span {
    background: rgba(0,0,0,0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.sub-meta span i {
    color: var(--hero-c2, #38bdf8);
}

/* Internal contents */
.bento-header {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.bento-header i {
    color: var(--accent-purple);
    font-size: 16px;
    opacity: 0.8;
}

.bento-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.bento-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.03);
}

.bento-field label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.bento-field span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-align: right;
}

/* Actions Grid */
.bento-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}

.bento-action-btn {
    padding: 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bento-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bento-action-btn.cyan { background: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.3); color: #67e8f9; }
.bento-action-btn.purple { background: rgba(168, 85, 247, 0.1); border-color: rgba(168, 85, 247, 0.3); color: #d8b4fe; }
.bento-action-btn.amber { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.3); color: #fcd34d; }
.bento-action-btn.discord-sync { background: rgba(88, 101, 242, 0.1); border-color: rgba(88, 101, 242, 0.3); color: #818cf8; }
.bento-action-btn.slate { background: rgba(100, 116, 139, 0.1); border-color: rgba(100, 116, 139, 0.3); color: #cbd5e1; }
.bento-action-btn.outline-info { border-color: rgba(56, 189, 248, 0.5); color: #38bdf8; }
.bento-action-btn.outline-danger { border-color: rgba(244, 63, 94, 0.5); color: #fb7185; }

.bento-action-btn:hover {
    filter: brightness(1.2);
}

/* GDPR Styles */
.gdpr-status {
    background: rgba(0,0,0,0.2);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.status-item {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.status-item:last-child { margin-bottom: 0; }

.gdpr-actions {
    display: flex;
    gap: 10px;
}

.gdpr-actions .bento-action-btn {
    flex: 1;
}

/* Other Items */
.bento-textarea {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 14px;
    color: #fff;
    font-size: 13px;
    min-height: 80px;
    resize: vertical;
    margin-bottom: 12px;
}

.bento-textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(0,0,0,0.3);
}

.bento-action-btn.yellow {
    background: #f59e0b;
    color: #000;
    width: 100%;
    border: none;
}
.bento-action-btn.yellow:hover {
    background: #fbbf24;
}

/* =======================================================
   BENTO GLOW ENHANCEMENTS (TOPBAR)
   ======================================================= */
.auv2-fuel-topbar.bento-topbar {
    background: rgba(20, 21, 35, 0.6) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.auv2-fuel-title.bento-title {
    background: linear-gradient(to right, #a855f7, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0px;
}

.hero-title-icon {
    -webkit-text-fill-color: initial;
    color: #a855f7;
    margin-right: 8px;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

/* =======================================================
   GLOBAL INTERACTIVE GLOW EFFECTS
   ======================================================= */

/* General Bento Cards Glow on Hover */
.auv2-bento-item {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.auv2-bento-item:not(.hero):hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(168, 85, 247, 0.15) !important;
    border-color: rgba(168, 85, 247, 0.4) !important;
}

/* Hero Card special hover */
.auv2-bento-item.hero:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 30px var(--hero-c1, rgba(168,85,247,0.2));
}

/* Data Fields (Name, Email, IP, etc.) Glow */
.auv2-fuel-grid-field {
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.auv2-fuel-grid-field:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.15), inset 0 0 8px rgba(168, 85, 247, 0.05);
    transform: translateY(-1px);
}

/* Badges Hover Glow */
.auv2-bento-grid .badge {
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.auv2-bento-grid .badge:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 5px 15px currentColor;
    z-index: 10;
}

/* Textareas Glow */
.bento-textarea {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bento-textarea:hover {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
}
