/* ─── X Follower Tracker — Dark Industrial Theme ─────────────────────────── */

:root {
    --bg-primary: #0a0e14;
    --bg-secondary: #111820;
    --bg-tertiary: #182030;
    --bg-card: #131a24;
    --bg-hover: #1a2332;
    --bg-input: #0d1219;

    --border-primary: #1e2a3a;
    --border-subtle: #162030;
    --border-active: #22d3ee;

    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-dim: #64748b;
    --text-muted: #475569;

    --accent-cyan: #22d3ee;
    --accent-cyan-dim: rgba(34, 211, 238, 0.15);
    --accent-green: #22c55e;
    --accent-green-dim: rgba(34, 197, 94, 0.12);
    --accent-red: #ef4444;
    --accent-red-dim: rgba(239, 68, 68, 0.12);
    --accent-amber: #f59e0b;
    --accent-amber-dim: rgba(245, 158, 11, 0.12);
    --accent-purple: #a78bfa;
    --accent-purple-dim: rgba(167, 139, 250, 0.12);

    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 0 0 1px var(--border-primary);
    --shadow-hover: 0 4px 12px rgba(0,0,0,0.5), 0 0 0 1px var(--border-primary);

    --sidebar-width: 220px;
    --transition: 150ms ease;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: #67e8f9; }

/* ─── Sidebar ────────────────────────────────────────────────────────────── */

.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-primary);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 100;
}

.sidebar-brand {
    padding: 1.4rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-bottom: 1px solid var(--border-primary);
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.1rem;
}

.brand-text {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.sidebar-nav {
    padding: 0.8rem 0.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.nav-item.active {
    background: var(--accent-cyan-dim);
    color: var(--accent-cyan);
}

.nav-item.active svg { stroke: var(--accent-cyan); }

.sidebar-footer {
    padding: 1rem 1.2rem;
    border-top: 1px solid var(--border-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-dim);
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ─── Main Content ───────────────────────────────────────────────────────── */

.content {
    margin-left: var(--sidebar-width);
    flex: 1;
    padding: 2rem 2.5rem;
    min-height: 100vh;
}

/* ─── Page Header ────────────────────────────────────────────────────────── */

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.page-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.back-link {
    font-size: 0.82rem;
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}
.back-link:hover { color: var(--accent-cyan); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-sm);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-color: var(--text-dim);
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
    font-weight: 600;
}

.btn-primary:hover {
    background: #06b6d4;
    border-color: #06b6d4;
    color: var(--bg-primary);
}

.btn-sm {
    padding: 0.3rem 0.7rem;
    font-size: 0.78rem;
}

.btn-danger {
    color: var(--accent-red);
    border-color: rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    background: var(--accent-red-dim);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.btn:disabled, .btn.syncing {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ─── Dashboard Cards ────────────────────────────────────────────────────── */

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.2rem;
}

.account-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.account-card:hover {
    border-color: var(--border-active);
    box-shadow: var(--shadow-hover);
}

.account-card:hover::before { opacity: 1; }

.card-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
}

.card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-primary);
    object-fit: cover;
    flex-shrink: 0;
}

.card-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dim);
    font-size: 1rem;
    flex-shrink: 0;
}

.card-identity { flex: 1; min-width: 0; }

.card-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-handle {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.stat-block {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.7rem;
    text-align: center;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.card-last-sync {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.card-change {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
}

/* ─── Sync Progress ──────────────────────────────────────────────────────── */

.sync-progress {
    margin-top: 0.8rem;
    display: none;
}

.sync-progress.active { display: block; }

.progress-bar-bg {
    width: 100%;
    height: 4px;
    background: var(--bg-primary);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.4);
}

.progress-text {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 0.3rem;
    text-align: right;
}

/* ─── Account Detail ─────────────────────────────────────────────────────── */

.account-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.account-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border-primary);
}

.account-info h1 {
    font-size: 1.4rem;
    font-weight: 700;
}

.account-handle {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-dim);
}

.summary-stats {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.summary-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    min-width: 140px;
}

.summary-stat .stat-value {
    font-size: 1.4rem;
    margin-bottom: 0.15rem;
}

.summary-stat .stat-label {
    font-size: 0.75rem;
}

/* ─── Tabs ───────────────────────────────────────────────────────────────── */

.tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 1.5rem;
}

.tab {
    padding: 0.7rem 1.3rem;
    color: var(--text-dim);
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.tab:hover {
    color: var(--text-secondary);
    background: var(--bg-hover);
}

.tab.active {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

.tab .tab-count {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    background: var(--bg-tertiary);
    padding: 0.1rem 0.5rem;
    border-radius: 99px;
    margin-left: 0.4rem;
    color: var(--text-dim);
}

.tab.active .tab-count {
    background: var(--accent-cyan-dim);
    color: var(--accent-cyan);
}

/* ─── Search ─────────────────────────────────────────────────────────────── */

.search-bar {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.search-input {
    flex: 1;
    max-width: 360px;
}

/* ─── Data Tables ────────────────────────────────────────────────────────── */

.data-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    background: var(--bg-card);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.data-table thead {
    background: var(--bg-secondary);
}

.data-table th {
    text-align: left;
    padding: 0.7rem 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-primary);
    white-space: nowrap;
}

.data-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: var(--bg-hover);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.cell-mono {
    font-family: var(--font-mono);
    font-size: 0.82rem;
}

.cell-dim { color: var(--text-muted); }

.cell-user {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cell-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border-primary);
    flex-shrink: 0;
}

.cell-user-info { min-width: 0; }

.cell-user-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cell-user-handle {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
}

.cell-empty {
    color: var(--text-muted);
    font-style: italic;
    padding: 1rem;
}

/* ─── Badges ─────────────────────────────────────────────────────────────── */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.55rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge-quality-normal   { background: var(--bg-tertiary); color: var(--text-dim); }
.badge-quality-verified { background: var(--accent-cyan-dim); color: var(--accent-cyan); }
.badge-quality-fake     { background: var(--accent-red-dim); color: var(--accent-red); }
.badge-quality-spam     { background: var(--accent-amber-dim); color: var(--accent-amber); }
.badge-quality-inactive { background: rgba(100, 116, 139, 0.15); color: #64748b; }
.badge-quality-egghead  { background: var(--accent-purple-dim); color: var(--accent-purple); }

.badge-verified {
    background: var(--accent-cyan-dim);
    color: var(--accent-cyan);
}

.badge-follows-you {
    background: var(--accent-green-dim);
    color: var(--accent-green);
}

.badge-status-active    { background: var(--accent-green-dim); color: var(--accent-green); }
.badge-status-suspended { background: var(--accent-red-dim); color: var(--accent-red); }
.badge-status-deleted   { background: rgba(100, 116, 139, 0.15); color: #64748b; }

.influence-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.influence-track {
    width: 50px;
    height: 4px;
    background: var(--bg-primary);
    border-radius: 2px;
    overflow: hidden;
}

.influence-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--accent-cyan);
}

.influence-value {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    min-width: 28px;
}

/* ─── Text Colors ────────────────────────────────────────────────────────── */

.text-green { color: var(--accent-green); }
.text-red   { color: var(--accent-red); }
.text-cyan  { color: var(--accent-cyan); }
.text-dim   { color: var(--text-dim); }

/* ─── Pagination ─────────────────────────────────────────────────────────── */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 0.5rem;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    transition: all var(--transition);
}

.pagination a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-color: var(--text-dim);
}

.pagination .active {
    background: var(--accent-cyan-dim);
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

/* ─── Forms & Inputs ─────────────────────────────────────────────────────── */

.input-field {
    width: 100%;
    padding: 0.6rem 0.85rem;
    background: var(--bg-input);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: border-color var(--transition);
}

.input-field::placeholder {
    color: var(--text-muted);
    font-family: var(--font-body);
}

.input-field:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 2px var(--accent-cyan-dim);
}

.input-textarea {
    resize: vertical;
    min-height: 70px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.form-hint {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ─── Settings ───────────────────────────────────────────────────────────── */

.settings-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.settings-section {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.settings-section h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.section-desc {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.settings-form {
    max-width: 480px;
}

.tracked-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tracked-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.9rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

.tracked-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tracked-name {
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.88rem;
}

.tracked-meta {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.tracked-status {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tracked-status.active { color: var(--accent-green); }
.tracked-status.inactive { color: var(--text-muted); }

/* ─── Charts ─────────────────────────────────────────────────────────────── */

.chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.chart-container canvas {
    max-height: 320px;
}

/* ─── Empty State ────────────────────────────────────────────────────────── */

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-dim);
}

.empty-icon {
    margin-bottom: 1rem;
    opacity: 0.4;
}

.empty-icon svg { stroke: var(--text-muted); }

.empty-state p {
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── Location + Extended Info ───────────────────────────────────────────── */

.cell-location {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.ext-badges {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .sidebar {
        width: 60px;
        overflow: hidden;
    }

    .brand-text,
    .nav-item span:not(.nav-item),
    .status-text { display: none; }

    .sidebar-brand { justify-content: center; padding: 1rem 0.5rem; }
    .nav-item { justify-content: center; padding: 0.7rem; }
    .sidebar-footer { justify-content: center; }

    .content {
        margin-left: 60px;
        padding: 1.2rem;
    }

    .accounts-grid {
        grid-template-columns: 1fr;
    }

    .summary-stats {
        flex-direction: column;
    }

    .card-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ─── Scrollbar ──────────────────────────────────────────────────────────── */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ─── Sync Icon Spin Animation ───────────────────────────────────────────── */

.sync-icon { transition: transform 0.2s; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sync-icon.spinning {
    animation: spin 1s linear infinite;
}

.btn-sync {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* ─── Page Header Flex Layout ────────────────────────────────────────────── */

.page-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.page-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ─── Account Header (inside page-header) ────────────────────────────────── */

.page-header .account-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.3rem;
}

/* ─── Badge: unfollowed status ───────────────────────────────────────────── */

.badge-status-unfollowed { background: var(--accent-amber-dim); color: var(--accent-amber); }
.badge-status-restricted { background: rgba(249, 115, 22, 0.15); color: #f97316; }
.badge-status-unknown    { background: var(--bg-tertiary); color: var(--text-dim); }
.badge-status-protected  { background: var(--accent-purple-dim); color: var(--accent-purple); }
.badge-status-rate_limited { background: var(--bg-tertiary); color: var(--text-dim); }

/* ─── Refollow / Returned Badges ─────────────────────────────────────────── */

.badge-refollow   { background: var(--accent-amber-dim); color: var(--accent-amber); }
.badge-refollowed { background: var(--accent-green-dim); color: var(--accent-green); font-size: 0.65rem; }

/* ─── Export Bar ──────────────────────────────────────────────────────────── */

.export-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
}

.export-bar .btn svg,
.filter-actions .btn svg {
    vertical-align: -2px;
    margin-right: 0.2rem;
}

/* ─── Filter Bar ─────────────────────────────────────────────────────────── */

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 0.25rem;
}

.filter-tab {
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.filter-tab:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.filter-tab.active {
    background: var(--accent-cyan-dim);
    color: var(--accent-cyan);
}

.filter-tab .tab-count {
    font-size: 0.7rem;
    opacity: 0.7;
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.sort-select {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

/* ─── Extra Small Button ─────────────────────────────────────────────────── */

.btn-xs {
    padding: 0.15rem 0.4rem;
    font-size: 0.7rem;
    border-radius: 3px;
}

/* ─── Cell User Info Layout ──────────────────────────────────────────────── */

.cell-user-info {
    display: flex;
    flex-direction: column;
}

.cell-user-name {
    display: block;
}

.cell-user-handle {
    display: block;
}

/* ─── Clickable Row ──────────────────────────────────────────────────────── */

.clickable-row {
    cursor: pointer;
    transition: background 0.15s;
}

.clickable-row:hover {
    background: var(--bg-tertiary);
}

/* ─── Dossier Modal ──────────────────────────────────────────────────────── */

.dossier-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
}

.dossier-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    max-width: 95vw;
    max-height: 85vh;
    overflow-y: auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.dossier-header {
    position: relative;
}

.dossier-close {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.dossier-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.dossier-banner {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-tertiary);
    border-radius: 8px 8px 0 0;
}

.dossier-profile-row {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    padding: 0 1.25rem;
    margin-top: -32px;
    position: relative;
}

.dossier-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--bg-secondary);
    object-fit: cover;
    object-position: center 20%;
    flex-shrink: 0;
}

.dossier-name-block {
    padding-bottom: 0.25rem;
    min-width: 0;
}

.dossier-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.dossier-handle {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: none;
}

.dossier-handle:hover {
    color: var(--accent-cyan);
}

.dossier-body {
    padding: 1rem 1.25rem 1.25rem;
}

.dossier-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 1rem;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Stats row */
.dossier-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--bg-primary);
    border-radius: 6px;
}

.dossier-stat {
    text-align: center;
}

.dossier-stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.dossier-stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
}

/* Metadata grid */
.dossier-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem 0.75rem;
    font-size: 0.8rem;
}

.dossier-meta-label {
    color: var(--text-dim);
    white-space: nowrap;
}

.dossier-meta-value {
    color: var(--text-secondary);
    word-break: break-word;
}

/* ─── Confirm Modal ──────────────────────────────────────────────────────── */

.confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm-modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    width: 340px;
    max-width: 92vw;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.confirm-modal-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-red-dim);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.confirm-modal-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.confirm-modal-msg {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.confirm-modal-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
}

/* ─── Selection ──────────────────────────────────────────────────────────── */

::selection {
    background: var(--accent-cyan-dim);
    color: var(--accent-cyan);
}

/* ─── Sidebar User Block ────────────────────────────────────────────────── */

.sidebar-user-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sidebar-user-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.sidebar-username {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-role {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.1rem 0.4rem;
    border-radius: 99px;
    width: fit-content;
}

.badge-role-admin  { background: var(--accent-red-dim); color: var(--accent-red); }
.badge-role-tier1  { background: var(--bg-tertiary); color: var(--text-dim); }
.badge-role-tier2  { background: var(--accent-cyan-dim); color: var(--accent-cyan); }
.badge-role-tier3  { background: var(--accent-purple-dim); color: var(--accent-purple); }

.sidebar-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    color: var(--text-dim);
    transition: all var(--transition);
    flex-shrink: 0;
}

.sidebar-logout:hover {
    background: var(--accent-red-dim);
    color: var(--accent-red);
}

/* ─── Login Page Body ───────────────────────────────────────────────────── */

body.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.login-body .sidebar,
body.login-body .content {
    display: none;
}

/* ─── My Account Page ───────────────────────────────────────────────────── */

.tier-badge-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tier-badge-lg.tier1 { background: var(--bg-tertiary); color: var(--text-dim); border: 1px solid var(--border-primary); }
.tier-badge-lg.tier2 { background: var(--accent-cyan-dim); color: var(--accent-cyan); border: 1px solid rgba(34, 211, 238, 0.2); }
.tier-badge-lg.tier3 { background: var(--accent-purple-dim); color: var(--accent-purple); border: 1px solid rgba(167, 139, 250, 0.2); }
.tier-badge-lg.admin { background: var(--accent-red-dim); color: var(--accent-red); border: 1px solid rgba(239, 68, 68, 0.2); }

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.slot-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    position: relative;
    transition: all var(--transition);
}

.slot-card:hover {
    border-color: var(--border-active);
}

.slot-card.slot-empty {
    border-style: dashed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.slot-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.swap-cooldown {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border-subtle);
}

/* ─── Request Status Badges ─────────────────────────────────────────────── */

.badge-pending  { background: var(--accent-amber-dim); color: var(--accent-amber); }
.badge-approved { background: var(--accent-green-dim); color: var(--accent-green); }
.badge-queued   { background: var(--accent-cyan-dim); color: var(--accent-cyan); }
.badge-fetching { background: var(--accent-purple-dim); color: var(--accent-purple); }
.badge-complete { background: var(--accent-green-dim); color: var(--accent-green); }
.badge-rejected { background: var(--accent-red-dim); color: var(--accent-red); }

/* ─── Admin Requests Table ──────────────────────────────────────────────── */

.request-actions {
    display: flex;
    gap: 0.4rem;
}

.btn-approve {
    color: var(--accent-green);
    border-color: rgba(34, 197, 94, 0.3);
}

.btn-approve:hover {
    background: var(--accent-green-dim);
    border-color: var(--accent-green);
}

.btn-reject {
    color: var(--accent-red);
    border-color: rgba(239, 68, 68, 0.3);
}

.btn-reject:hover {
    background: var(--accent-red-dim);
    border-color: var(--accent-red);
}

/* ─── Queue Position Indicator ──────────────────────────────────────────── */

.queue-position {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--accent-cyan);
    padding: 0.2rem 0.6rem;
    background: var(--accent-cyan-dim);
    border-radius: var(--radius-sm);
}

/* ─── API Credentials UI ────────────────────────────────────────────────── */

.credential-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.credential-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.credential-card.disabled {
    opacity: 0.5;
    background: transparent;
}

.cred-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-subtle);
}

.cred-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.health-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px currentColor;
}
.health-dot.status-green { color: var(--accent-green); background-color: var(--accent-green); }
.health-dot.status-yellow { color: var(--accent-amber); background-color: var(--accent-amber); }
.health-dot.status-red { color: var(--accent-red); background-color: var(--accent-red); animation: pulse 1.5s infinite; }

@keyframes pulse {
    0% { opacity: 1; box-shadow: 0 0 8px currentColor; }
    50% { opacity: 0.5; box-shadow: 0 0 2px currentColor; }
    100% { opacity: 1; box-shadow: 0 0 8px currentColor; }
}

.cred-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    font-size: 0.85rem;
}

.cred-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cred-stats .stat span {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cred-stats .stat strong {
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.cred-stats .error-stat strong {
    color: var(--accent-red);
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--bg-hover);
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 14px; width: 14px;
  left: 3px; bottom: 3px;
  background-color: var(--text-muted);
  transition: .4s;
}
input:checked + .slider { background-color: var(--accent-blue); }
input:focus + .slider { box-shadow: 0 0 1px var(--accent-blue); }
input:checked + .slider:before {
  transform: translateX(20px);
  background-color: #fff;
}
.slider.round { border-radius: 20px; }
.slider.round:before { border-radius: 50%; }

/* ─── Ultra Premium Glassmorphism Theme Overrides ────────────────────────── */

:root {
    --bg-primary: #05080f;
    --bg-secondary: rgba(20, 25, 40, 0.3);
    --bg-tertiary: rgba(25, 30, 50, 0.4);
    --bg-card: rgba(18, 24, 38, 0.45);
    --bg-hover: rgba(35, 45, 70, 0.5);
    --bg-input: rgba(10, 14, 24, 0.7);

    --border-primary: rgba(255, 255, 255, 0.08);
    --border-subtle: rgba(255, 255, 255, 0.03);
    --border-active: rgba(0, 240, 255, 0.7);

    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-dim: #94a3b8;
    --text-muted: #64748b;

    --accent-cyan: #00f0ff;
    --accent-cyan-dim: rgba(0, 240, 255, 0.2);
    --accent-blue: #3b82f6;

    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 12px 48px rgba(0, 240, 255, 0.25);
    
    --glass-blur: blur(20px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

body {
    background: radial-gradient(circle at 10% 20%, rgba(40, 10, 90, 0.35), transparent 45%),
                radial-gradient(circle at 90% 80%, rgba(0, 120, 180, 0.25), transparent 45%),
                radial-gradient(circle at 50% 50%, rgba(10, 10, 30, 0.8), transparent 70%),
                var(--bg-primary) !important;
    background-attachment: fixed !important;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

.sidebar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-right: var(--glass-border) !important;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
}

.account-card, .stat-block, .header, .card, .dashboard-header, .stat-card, .sync-card, .panel {
    background: var(--bg-card) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border) !important;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.account-card:hover, .card:hover, .stat-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(40, 50, 75, 0.45) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #00f0ff, #0066ff) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}

input, select, textarea, .form-input, .input-group, .search-bar input {
    background: var(--bg-input) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px);
    color: var(--text-primary) !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus, .search-bar input:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 0 3px var(--accent-cyan-dim), inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    background: rgba(15, 20, 35, 0.8) !important;
}

.header {
    background: rgba(10, 14, 22, 0.4) !important;
    backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border) !important;
}

.nav-item.active {
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.15), transparent) !important;
    border-left: 3px solid var(--accent-cyan);
    color: var(--accent-cyan) !important;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255,255,255,0.1);
}

.card-avatar, .profile-avatar {
    border: 2px solid rgba(0, 240, 255, 0.5) !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.status-badge {
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Glassmorphism subtle glow elements */
.account-card::after, .card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0.5;
}

/* ─── Extreme Neon Upgrades ──────────────────────────────────────────────── */

:root {
    --accent-magenta: #ff00ff;
    --accent-magenta-dim: rgba(255, 0, 255, 0.25);
    --shadow-neon-cyan: 0 0 10px rgba(0, 240, 255, 0.6), 0 0 20px rgba(0, 240, 255, 0.4), 0 0 40px rgba(0, 240, 255, 0.2);
    --shadow-neon-magenta: 0 0 10px rgba(255, 0, 255, 0.6), 0 0 20px rgba(255, 0, 255, 0.4), 0 0 40px rgba(255, 0, 255, 0.2);
    --shadow-hover: 0 12px 48px rgba(0, 240, 255, 0.35), 0 0 25px rgba(255, 0, 255, 0.2);
}

.account-card, .card, .stat-card, .panel, .dashboard-header {
    border: 1px solid rgba(0, 240, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(0, 240, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.account-card::before, .card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, var(--accent-cyan), transparent, var(--accent-magenta), transparent);
    background-size: 400% 400%;
    animation: neonFlow 8s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.account-card:hover::before, .card:hover::before {
    opacity: 0.8;
}

@keyframes neonFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.account-card:hover, .card:hover, .stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover), var(--shadow-neon-cyan) !important;
    border-color: var(--accent-cyan) !important;
}

h1, h2, h3, .brand-text, .stat-value {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.3);
}

.sidebar .brand-icon {
    box-shadow: var(--shadow-neon-cyan);
    border: 1px solid var(--accent-cyan);
    background: var(--bg-card) !important;
    color: var(--accent-cyan) !important;
    text-shadow: 0 0 8px var(--accent-cyan);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta)) !important;
    box-shadow: var(--shadow-neon-cyan);
    border: 1px solid rgba(255,255,255,0.4) !important;
}

.btn-primary:hover {
    box-shadow: var(--shadow-neon-magenta), 0 0 30px var(--accent-cyan);
}

.nav-item.active {
    box-shadow: inset 5px 0 15px var(--accent-cyan-dim);
    border-left: 4px solid var(--accent-cyan);
    text-shadow: 0 0 8px var(--accent-cyan);
}

input:focus, select:focus, textarea:focus {
    box-shadow: var(--shadow-neon-cyan), inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    border-color: var(--accent-cyan) !important;
}

.stat-value .text-green, .text-green {
    -webkit-text-fill-color: var(--accent-green) !important;
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.8) !important;
    color: var(--accent-green) !important;
}

.stat-value .text-red, .text-red {
    -webkit-text-fill-color: var(--accent-red) !important;
    text-shadow: 0 0 12px rgba(239, 68, 68, 0.8) !important;
    color: var(--accent-red) !important;
}

.stat-value .text-dim, .text-dim {
    -webkit-text-fill-color: var(--text-dim) !important;
    text-shadow: none !important;
    color: var(--text-dim) !important;
}

.card-star {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    color: #ffcc00;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.6), 0 0 20px rgba(255, 204, 0, 0.3);
    z-index: 10;
    pointer-events: none;
}


