/* ========================================
   ADMIN PORTAL - PREMIUM CYBER THEME
   ======================================== */

:root {
    --admin-bg: #03060b;
    --admin-surface: #0a0e17;
    --admin-accent: #4ade80;
    /* Signature Neon Green */
    --admin-cyan: #22d3ee;
    --admin-border: rgba(74, 222, 128, 0.15);
}

.admin-portal {
    background-color: var(--admin-bg);
    color: #e2e8f0;
}

/* 1. SIDEBAR REFINEMENT */
aside.admin-sidebar {
    background-color: #05080f !important;
    border-right: 1px solid var(--admin-border) !important;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.8);
}

.sidebar-laser {
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--admin-accent), transparent);
    box-shadow: 0 0 10px var(--admin-accent);
    opacity: 0.5;
}

aside.admin-sidebar nav a.active {
    background: rgba(74, 222, 128, 0.1) !important;
    color: var(--admin-accent) !important;
    border-left: 3px solid var(--admin-accent);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.2);
}

/* 2. DASHBOARD CARDS */
.admin-card {
    background: rgba(10, 14, 23, 0.8) !important;
    border: 1px solid var(--admin-border) !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(74, 222, 128, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-card:hover {
    border-color: rgba(74, 222, 128, 0.4) !important;
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.15);
    transform: translateY(-4px);
}

/* 3. PREMIUM TABLE */
.admin-table-container {
    background: rgba(5, 8, 15, 0.5);
    border: 1px solid var(--admin-border);
    border-radius: 12px;
    overflow: hidden;
}

.admin-table tr:hover {
    background-color: rgba(74, 222, 128, 0.03) !important;
}

.admin-table th {
    background-color: rgba(15, 23, 42, 0.8) !important;
    color: var(--admin-cyan) !important;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.05em;
}

/* 4. CYBER LANGUAGE SELECTOR */
.admin-lang-selector {
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--admin-border);
    border-radius: 9999px;
    padding: 2px;
    gap: 2px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.admin-lang-btn {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Orbitron', sans-serif;
}

.admin-lang-btn.active {
    background: var(--admin-accent);
    color: #000;
    box-shadow: 0 0 15px var(--admin-accent);
}

.admin-lang-btn:not(.active):hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* 5. INPUTS & BUTTONS */
.admin-input {
    background: #020408 !important;
    border: 1px solid var(--admin-border) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.admin-input:focus {
    border-color: var(--admin-accent) !important;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.3) !important;
}

.admin-btn-primary {
    background: var(--admin-accent) !important;
    color: #000 !important;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
    box-shadow: 0 0 15px var(--admin-accent);
    transition: all 0.3s ease;
}

.admin-btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px var(--admin-accent);
}

/* Custom Scrollbar for Admin */
.admin-portal::-webkit-scrollbar {
    width: 8px;
}

.admin-portal::-webkit-scrollbar-track {
    background: #05080f;
}

.admin-portal::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

.admin-portal::-webkit-scrollbar-thumb:hover {
    background: var(--admin-accent);
}