/* Prevent FOUC - set default background before JS runs */
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
}
:root {
    --bg-dark: #050505;
    --neon-cyan: #00f2ff;
    --neon-purple: #7000ff;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(10, 10, 10, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --danger: #ff0055;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --header-height: 74px;
}

/* Extracted reusable utility classes */
.btn-block {
    width: 100%;
}

.btn-admin-add {
    align-self: flex-start;
    margin-bottom: 1rem;
}

.oauth-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-oauth-inline {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
}

.text-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider-line {
    border-top: 1px solid var(--glass-border);
}

.divider-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-dark);
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.help-text {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-message {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.back-row {
    text-align: center;
    margin-top: 1.5rem;
}

.form-label-inline {
    position: static;
    display: inline-block;
    margin-right: 0.5rem;
}

.filter-select {
    width: auto;
    display: inline-block;
    min-width: 200px;
}

.readonly-field {
    opacity: 0.7;
}

.hidden {
    display: none;
}

/* Modal utility classes */
.modal-narrow {
    max-width: 420px;
}

.modal-medium {
    max-width: 450px;
}

.modal-heading {
    padding: 1.5rem 2rem 1rem;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    border-bottom: 1px solid var(--glass-border);
}

.modal-body {
    padding: 1.5rem 2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.modal-actions-split {
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.modal-subtitle {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 600;
}

.modal-select {
    width: 100%;
    padding: 0.6rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-scroll {
    max-height: 300px;
    overflow-y: auto;
    padding: 0 2rem;
}

.empty-hint {
    color: var(--text-muted);
    text-align: center;
}

/* app.js injected-content classes */
.dialog-input {
    width: 100%;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    border-radius: 4px;
}

.status-active {
    color: #00ff88;
    font-size: 0.8rem;
}

.status-disabled {
    color: #ff0055;
    font-size: 0.8rem;
}

.role-checkbox-row {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin: 0.25rem 0;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.role-checkbox-row:hover {
    background: rgba(30, 30, 30, 0.7);
}

.role-checkbox-input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: var(--neon-cyan);
    cursor: pointer;
}

.role-checkbox-label {
    color: var(--text-main);
    font-size: 0.95rem;
}

.role-assigned-badge {
    margin-left: auto;
    color: var(--neon-cyan);
    font-size: 0.8rem;
}

.form-input-select {
    padding-top: 10px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Aura Background Layer - Home (centered glow) */
.aura-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    background: radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.2) 0%, rgba(5, 5, 5, 0) 70%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Aura Background Layer - Professional (top glow) */
.aura-bg-professional {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    background: radial-gradient(ellipse at 50% 0%, rgba(112, 0, 255, 0.25) 0%, rgba(112, 0, 255, 0.1) 40%, rgba(5, 5, 5, 0) 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Toggle visibility */
.professional-mode .aura-bg {
    opacity: 0;
}

.professional-mode .aura-bg-professional {
    opacity: 1;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    display: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-cyan);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-purple);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(112, 0, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan);
}

/* Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    height: var(--header-height);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

.nav-links a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.nav-links a#logoutLink {
    margin-left: 1rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--neon-cyan);
    border-radius: 6px;
    background: transparent;
    transition: all 0.3s;
    min-height: auto;
}

.nav-links a#logoutLink:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    text-shadow: none;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}

.nav-links a#logoutLink::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: 0.3s;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 70%;
        height: calc(100vh - var(--header-height));
        background: rgba(5, 5, 5, 0.98);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* Sections General */
section {
    min-height: calc(100vh - var(--header-height));
    padding: 2rem;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hide Scrollbars on Desktop */
@media (min-width: 769px) {
    html {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    html::-webkit-scrollbar {
        display: none;
    }
}

/* Hero Section */
#home {
    text-align: center;
    perspective: 1000px;
}

.hero-content {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: revealLine 0.8s forwards ease-out;
}

.hero-line:nth-child(1) { animation-delay: 0.2s; }
.hero-line:nth-child(2) { animation-delay: 0.4s; }
.hero-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes revealLine {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 1s forwards 1s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Buttons */
.btn {
    position: relative;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s;
    min-height: 44px;
    letter-spacing: 1px;
    border-radius: 50px;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--neon-cyan);
    z-index: -1;
    transition: width 0.3s ease-in-out;
}

.btn:hover {
    color: var(--bg-dark);
}

.btn:hover::before {
    width: 100%;
}

.btn-danger {
    border-color: var(--danger);
    color: var(--danger);
}

.btn-danger::before {
    background: var(--danger);
}

.btn-danger:hover {
    color: #fff;
}

/* OAuth Buttons */
.btn-oauth {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    min-height: 44px;
    transition: all 0.3s ease;
}

.btn-oauth:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--text-main);
}

/* Dashboard & Cards */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--neon-purple);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.feature-card {
    position: relative;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(128, 128, 128, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    border-color: transparent;
}

/* Touch device scale effect */
@media (hover: none) {
    .feature-card:active {
        transform: scale(0.98);
    }
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--neon-purple);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-count {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Login & Form */
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 2.5rem;
    background: rgba(20, 20, 20, 0.3);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-main);
    background: rgba(20, 20, 20, 0.8);
    border: none;
    border-bottom: 1px solid var(--text-muted);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-bottom-color: var(--neon-cyan);
}

.form-label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s ease all;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--neon-cyan);
}

.form-input:focus {
    animation: borderFlow 1s infinite alternate;
}

/* Client secret fields with show/hide toggle */
.secret-field {
    position: relative;
}

.secret-toggle {
    position: absolute;
    right: 0;
    top: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
    z-index: 2;
}

.secret-toggle:hover {
    color: var(--neon-cyan);
}

.secret-toggle.visible {
    color: var(--neon-cyan);
}

.secret-toggle svg {
    display: block;
}

@keyframes borderFlow {
    0% { border-bottom-color: var(--neon-cyan); }
    50% { border-bottom-color: var(--neon-purple); }
    100% { border-bottom-color: var(--neon-cyan); }
}

/* Admin Interface Specifics */
.admin-table {
    width: 100%;
    max-width: 1200px;
    border-collapse: collapse;
    margin-top: 2rem;
    background: rgba(20, 20, 20, 0.3);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
}

.admin-table th, .admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table th {
    background: rgba(112, 0, 255, 0.1);
    color: var(--neon-purple);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.action-btns button {
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btns button:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
}

.action-btns button.delete:hover {
    border-color: var(--danger);
    background: var(--danger);
    color: #fff;
}

.action-btns button.reset {
    border-color: #ffaa00;
    color: #ffaa00;
}

.action-btns button.reset:hover {
    background: #ffaa00;
    color: var(--bg-dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

/* Dialog modal appears on top of other modals */
#dialogModal.active {
    z-index: 3000;
}

.modal-content {
    background: #101010;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.modal-content > h3 {
    flex-shrink: 0;
    padding: 1.5rem 2rem 1rem;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    border-bottom: 1px solid var(--glass-border);
}

.modal-content > form {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.modal-content > form::-webkit-scrollbar {
    width: 6px;
}

.modal-content > form::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.modal-content > form::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 3px;
}

.modal-content > form::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

.modal-content > .modal-actions {
    flex-shrink: 0;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
}

.modal-content > .modal-actions button[type="submit"] {
    width: 100%;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
}

.close-modal:hover {
    color: var(--neon-cyan);
}

/* Router Utility */
.page-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.page-section.active {
    display: flex;
    opacity: 1;
}

/* Loading Overlay */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

#loadingOverlay.active {
    opacity: 1;
    pointer-events: auto;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(0, 242, 255, 0.2);
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Select styling for dynamically generated form fields */
.form-input-select {
    padding-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    section {
        padding: 2rem;
        padding-top: calc(var(--header-height) + 2rem);
    }
    .login-container {
        padding: 1.5rem;
    }
    .admin-table {
        display: block;
        overflow-x: auto;
    }
    /* Cap the email column so rows don't force a scrollbar */
    .admin-table td:nth-child(2) {
        min-width: 0;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* --- Admin tables: card layout on mobile --- */
@media (max-width: 720px) {
    .admin-table,
    .admin-table thead,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .admin-table tbody tr {
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        background: rgba(20, 20, 20, 0.45);
    }

    .admin-table td {
        padding: 0.5rem 0.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        text-align: left;
        white-space: normal;
    }

    .admin-table td:last-child {
        border-bottom: none;
    }

    /* Label each cell using its column order */
    .admin-table td:nth-child(1)::before { content: "ID "; color: var(--neon-purple); }
    .admin-table td:nth-child(2)::before { content: "Email "; color: var(--neon-purple); }
    .admin-table td:nth-child(3)::before { content: "Name "; color: var(--neon-purple); }
    .admin-table td:nth-child(4)::before { content: "Status "; color: var(--neon-purple); }
    .admin-table td:nth-child(5)::before { content: "Actions "; color: var(--neon-purple); }

    /* Action buttons stack full-width on mobile */
    .admin-table .action-btns {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .admin-table .action-btns button {
        width: 100%;
        margin: 0;
        padding: 0.65rem 1rem;
    }
}