:root {
    --primary-color: #00ff88; /* Modern neon zöld */
    --bg-color: #0f172a;      /* Mélykék/fekete háttér */
    --text-color: #ffffff;
    --accent-color: #1e293b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 80px !important;
}

/* Navigáció */
/* Navigációs sáv finomítása */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logó kép formázása */
.logo-container .main-logo {
    height: 40px; /* Mobilra ideális magasság */
    width: auto;
    display: block;
}

/* Minimalista Hamburger Menü Ikon */
.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.menu-icon .bar {
    height: 2px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Hero szekció */
.hero {
    padding: 40px 20px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

p {
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Gombok - Mobilra optimalizálva */
.cta-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.btn {
    display: block;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
    text-align: center;
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--accent-color);
}

/* Kártyák */
.info-card {
    margin-top: 50px;
    background: var(--accent-color);
    padding: 20px;
    border-radius: 15px;
    text-align: left;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Admin specifikus stílusok */
.admin-container {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.admin-header {
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

/* Statisztikai kártyák */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Admin gombok */
.admin-actions h3, .live-monitor h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-admin-action {
    background: #2d3748;
    color: white;
    font-size: 0.9rem;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    width: 100%;
    text-align: left;
}

.btn-admin-danger {
    background: #742a2a;
    color: #feb2b2;
    font-size: 0.9rem;
    padding: 12px;
    border: none;
    width: 100%;
}

/* Élő monitor rész */
.monitor-table {
    background: var(--accent-color);
    border-radius: 12px;
    overflow: hidden;
}

.monitor-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.team-info strong {
    display: block;
    font-size: 1rem;
}

.team-info span {
    font-size: 0.8rem;
    opacity: 0.6;
}

.team-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.team-status.online { background: var(--primary-color); box-shadow: 0 0 10px var(--primary-color); }
.team-status.offline { background: #4a5568; }

/* Kódkezelő extra stílusok */
.code-generator {
    margin-bottom: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--accent-color);
    border-radius: 12px;
    font-size: 0.85rem;
}

.admin-table th, .admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.code-display {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.status-badge.unused {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
}

.status-badge.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Vásárlási folyamat */
.checkout-container, .success-page {
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.product-card {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.payment-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #2d3748;
    color: white;
    font-weight: 600;
}

/* Sikeres oldal specifikus */
.success-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 40px auto 20px;
}

.generated-code-box {
    background: #1e293b;
    border: 2px dashed var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0;
}

.final-code {
    font-size: 2.5rem;
    font-family: 'Courier New', monospace;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 5px;
    margin: 10px 0;
}

.copy-btn {
    background: none;
    border: none;
    color: #888;
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
}

/* ADMIN MENÜ RESZPONZÍV STÍLUS */

.admin-nav {
    display: flex;
    flex-wrap: wrap;       /* FONTOS: Ez engedi új sorba törni a gombokat */
    gap: 10px;             /* Kisebb térköz mobilon, hogy jobban elférjen */
    margin-bottom: 30px;
    justify-content: center; /* Középre igazítja őket */
}

.nav-btn {
    flex: 1 1 auto;        /* 1: Növekedhet, 1: Zsugorodhat, Auto: Méret */
    min-width: 140px;      /* Minimum szélesség, hogy ne nyomódjon össze */
    background: #2d3748;
    color: white;
    padding: 12px 15px;    /* Kényelmes érintési felület */
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;    /* Szöveg középre */
    display: flex;         /* Ikon és szöveg igazítása */
    align-items: center;
    justify-content: center;
    gap: 8px;              /* Ikon és szöveg közti térköz */
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: #4a5568;
    transform: translateY(-2px);
}

.nav-btn.active {
    background: var(--primary-color);
    color: #000;
    font-weight: bold;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

/* Különleges stílus a Kupon gombnak (opcionális) */
.nav-btn-yellow {
    background: rgba(234, 179, 8, 0.2);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.5);
}

/* --- MODERN SCANNER UI --- */

/* Az egész képernyős sötétítő */
#scanner-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.95); /* Mélykék háttér */
    backdrop-filter: blur(8px);        /* Homályosítás */
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

/* A kártya, ami a szkennert tartja */
.scanner-card {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: #1e293b;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Fejléc a kártyán */
.scanner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.scanner-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Bezárás gomb (X) */
.close-icon-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-icon-btn:hover {
    background: #ff6b6b;
    transform: rotate(90deg);
}

/* Maga a kamera doboz (Könyvtár felülírása) */
#reader {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* A könyvtár belső videó elemének formázása */
#reader video {
    object-fit: cover;
    border-radius: 16px;
}

/* LÉZER ANIMÁCIÓ */
.scan-region-highlight {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; /* Átkattintható */
    z-index: 10;
    border-radius: 16px;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

.scan-laser {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    opacity: 0.6;
    animation: scanMove 2s infinite linear;
}

@keyframes scanMove {
    0% { top: 10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 90%; opacity: 0; }
}

/* Segédszöveg */
.scanner-instruction {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Rejtsük el a html5-qrcode csúnya alap gombjait */
#reader__dashboard_section_csr span, 
#reader__dashboard_section_swaplink {
    display: none !important;
}
/* --- HEADER ALAPOK --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8); /* Áttetsző sötétkék */
    backdrop-filter: blur(10px); /* Mögöttes tartalom elhomályosítása */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;          /* Segít függőlegesen középre igazítani a képet */
    align-items: center;
    text-decoration: none;  /* Ne legyen aláhúzás, ha véletlenül szöveg is kerül mellé */
    padding: 5px 0;        /* Kis extra hely felül/alul */
}

/* MAGA A KÉP MÉRETEZÉSE - EZ A LÉNYEG! */
.logo img {
    height: 50px;           /* Állítsd be a kívánt magasságot! (pl. 40px és 60px között ideális) */
    width: auto;            /* A szélesség automatikusan igazodik, nem torzul a kép */
    object-fit: contain;    /* Biztosítja, hogy a kép mindig benne maradjon a keretben */
    display: block;         /* Eltünteti a képek alatti felesleges kis helyet */
    transition: transform 0.3s ease; /* Finom animáció hoverre */
}

/* Opcionális: Modern effekt, ha ráviszed az egeret */
.logo:hover img {
    transform: scale(1.05);             /* Picit megnő */
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.3)); /* Finom ragyogás */
}

/* Mobilon esetleg lehet még kisebb, ha szükséges */
@media (max-width: 600px) {
    .logo img {
        height: 40px;
    }
}

/* --- HAMBURGER GOMB (ANIMÁLT) --- */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002; /* Hogy a menü felett legyen */
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.bar {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff; /* Fehér csíkok */
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6); /* Ruganyos animáció */
}

/* Aktív állapot (X forma) */
.hamburger-btn.active .bar-1 {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: var(--primary-color); /* Zöldre vált */
}

.hamburger-btn.active .bar-2 {
    opacity: 0;
    transform: translateX(-20px); /* Kirepül balra */
}

.hamburger-btn.active .bar-3 {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--primary-color);
}

/* --- TELJES KÉPERNYŐS MENÜ --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0f172a; /* Sötét háttér */
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    /* Háttér minta (opcionális) */
    background-image: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- MENÜPONTOK ANIMÁCIÓJA --- */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.menu-link {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px); /* Lentről indul */
    transition: all 0.4s ease;
    position: relative;
}

.menu-link:hover {
    color: var(--primary-color);
    letter-spacing: 2px; /* Széthúzódik hoverkor */
}

/* Késleltetett megjelenés (Stagger effect) */
.mobile-menu-overlay.active .menu-link {
    opacity: 1;
    transform: translateY(0);
}

/* Különböző késleltetések a sorrendiséghez */
.mobile-menu-overlay.active .menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .menu-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .menu-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .menu-link:nth-child(4) { transition-delay: 0.4s; }

/* Kiemelt gomb (Belépés) stílusa */
.highlight-link {
    font-size: 1.2rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    margin-top: 20px;
}
.highlight-link:hover {
    background: var(--primary-color);
    color: #000;
    letter-spacing: normal;
}

main, .hero-section, .admin-container {
    padding-top: 110px; /* Fejléc magassága + 30px levegő */
}

.hero-section {
    /* Ha van háttérképed itt, hagyd meg */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Függőlegesen középre */
    align-items: center;     /* Vízszintesen középre */
    /* Fontos: A padding-top miatt a szöveg lejjebb kerül, de a háttér marad */
    padding-top: 128px !important; 
}

/* Mobilon kicsit kisebb hely is elég */
@media (max-width: 600px) {
    main, .hero-section, .admin-container {
        padding-top: 90px;
    }
}

.hero-title {
    
    margin-top: 120px; /* Ez garantáltan letolja a szöveget a fejléc alól */
    position: relative; /* Biztosítja, hogy a z-index működjön */
    z-index: 1; /* Hogy biztosan látszódjon */
}

/* --- ÁRAK OLDAL STÍLUS --- */

/* Háttér és elrendezés */
.prices-page {
    min-height: 100vh;
    padding: 120px 20px 60px; /* Fent hagyunk helyet a fix menünek */
    background: radial-gradient(circle at top center, rgba(30, 41, 59, 1) 0%, rgba(15, 23, 42, 1) 100%);
    text-align: center;
}

.prices-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.prices-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Kártya konténer (Grid) */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Egyéni kártya */
.price-card {
    background: rgba(30, 41, 59, 0.6); /* Áttetsző sötét */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Kiemelt (Középső) kártya stílusa */
.price-card.popular {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
    transform: scale(1.05); /* Kicsit nagyobb alapból */
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

/* Kiemelt plecsni (Badge) */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Szövegek a kártyán */
.plan-name {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.plan-desc {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
}

/* Mobil nézet */
@media (max-width: 900px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .price-card.popular {
        transform: scale(1); /* Mobilon ne legyen nagyobb */
        order: -1; /* Mobilon ez legyen legfelül! */
    }
    
    .price-card.popular:hover {
        transform: translateY(-5px);
    }
}

a{
    text-decoration: none;
    color: white;
}

/* =========================================
   JAVÍTOTT MOBIL "APP-LIKE" DOCK (FIX)
   ========================================= */

@media (max-width: 768px) {

    /* 1. Helybiztosítás az oldal alján */
    body {
        padding-bottom: 120px !important;
    }

    /* 2. A DOCK KERET - Erősebb szabályokkal */
    div.admin-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 20px !important;
        left: 3% !important;
        width: 94% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        right: 0 !important; /* Középre igazítás trükk */
        left: 0 !important;
        
        /* Láthatóság és Háttér */
        background: rgba(15, 23, 42, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
        
        padding: 10px !important;
        z-index: 9990 !important; /* Szkenner (9999) alatt maradjon */
        justify-content: space-around !important;
        align-items: center !important;
        flex-wrap: nowrap !important; /* Ne tördelje a sorokat */
        overflow: visible !important; /* Gombok kilóghassanak */
        gap: 0 !important;
    }

    /* 3. A GOMBOK ALAPHELYZETE */
    div.admin-nav .nav-btn,
    div.admin-nav a.nav-btn,
    div.admin-nav button.nav-btn {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: #94a3b8 !important;
        
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        
        padding: 5px !important;
        margin: 0 !important;
        width: auto !important;
        flex: 1 !important; /* Kitölti a helyet */
        min-width: 50px !important;
        height: auto !important;
        
        font-size: 0 !important;
        font-weight: normal !important;
        text-transform: none !important;
        opacity: 1 !important; /* Biztosan látszódjon */
    }

    /* 4. IKONOK MÉRETE */
    div.admin-nav .nav-btn i {
        font-size: 1.4rem !important;
        margin-bottom: 4px !important;
        display: block !important;
        color: inherit !important;
        margin-right: 0 !important; /* PHP inline stílus reset */
    }

    /* 5. AKTÍV GOMB */
    div.admin-nav .nav-btn.active {
        color: var(--primary-color) !important;
        background: rgba(0, 255, 136, 0.05) !important;
        border-radius: 12px !important;
        padding: 13px !important;
    }
    
    div.admin-nav .nav-btn.active i {
        transform: translateY(-2px);
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        margin-top: 10px;
    }

    /* 3. ÚJ: MOBIL TOOLBAR (Cím alatti gombok tárolója) */
    .mobile-toolbar {
        display: flex;
        gap: 10px;
        margin: 15px 0 25px 0; /* Távolság a címtől és a tartalomtól */
        justify-content: center;
        width: 100%;
    }

    /* A toolbarban lévő gombok stílusa */
    .mobile-toolbar .nav-btn {
        flex: 1; /* Kitöltik a szélességet */
        background: var(--primary-color) !important;
        color: #0f172a !important; /* Sötét szöveg */
        font-weight: bold !important;
        padding: 12px 15px !important;
        border-radius: 12px !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        font-size: 0.9rem !important; /* Szöveg látható legyen! */
        box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
        border: none !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Toolbar ikonok */
    .mobile-toolbar .nav-btn i {
        font-size: 1.1rem !important;
        margin: 0 !important;
    }
    
    /* Toolbarban a szöveg megjelenítése (felülbírálja a dock rejtését) */
    .mobile-toolbar .nav-btn span,
    .mobile-toolbar .nav-btn small {
        display: inline-block !important;
    }

    /* 4. DOCK (ALSÓ MENÜ) - Csak navigáció */
    div.admin-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 20px !important;
        left: 3% !important;
        width: 94% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        right: 0 !important;
        
        background: rgba(15, 23, 42, 0.90) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 25px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
        
        padding: 20px 20px !important;
        z-index: 9990 !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* Dock gombok (Szöveg nélkül) */
    div.admin-nav .nav-btn,
    div.admin-nav a.nav-btn {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: #94a3b8 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        flex: 1 !important;
        height: 40px !important;
        font-size: 0 !important; /* Szöveg rejtése */
    }

    div.admin-nav .nav-btn i {
        font-size: 1.6rem !important;
        margin: 0 !important;
        color: inherit !important;
    }

    /* Aktív állapot */
    div.admin-nav .nav-btn.active {
        color: var(--primary-color) !important;
        background: transparent !important;
    }
    
    div.admin-nav .nav-btn.active i {
        transform: translateY(-5px);
        text-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    }
    
    div.admin-nav .nav-btn.active::after {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        background: var(--primary-color);
        border-radius: 50%;
        position: absolute;
        bottom: -5px;
        box-shadow: 0 0 5px var(--primary-color);
    }

    /* Ha véletlenül a navigációban maradtak volna a funkció gombok, rejtsük el őket a dockból */
    div.admin-nav .btn-create, 
    div.admin-nav .btn-scan, 
    div.admin-nav .btn-add {
        display: none !important;
    }

    /* 1. A gomb legyen a viszonyítási pont */
    div.admin-nav a.nav-btn {
        position: relative !important;
    }

    /* 2. A pötty középre húzása */
    div.admin-nav a.nav-btn.active::after {
        left: 50% !important;              /* A szülő feléhez toljuk */
        transform: translateX(-50%) !important; /* A saját felével visszahúzzuk (így lesz pont középen) */
        bottom: 0 !important;           /* Finomhangolás a magasságon */
        width: 5px !important;             /* Kicsit határozottabb pötty */
        height: 5px !important;
    }
}
