/* css_base/main.css */

/* Alapvető sötét, elegáns téma */
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(rgba(15, 15, 15, 0.88), rgba(15, 15, 15, 0.88)), url('../host_img/BG.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #eaeaea; 
    margin: 0; 
    display: flex; 
    height: 100vh; 
    overflow: hidden; 
}

h2 {
    font-weight: 400;
    letter-spacing: 1px;
    color: #d4af37;
    margin-top: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

/* Panelek üveg-effekttel (glassmorphism) */
.sidebar { 
    width: 350px; 
    background: rgba(20, 20, 20, 0.6); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 25px; 
    border-right: 1px solid rgba(255, 255, 255, 0.05); 
    overflow-y: auto; 
    box-shadow: 2px 0 15px rgba(0,0,0,0.5);
}

.right-sidebar { 
    width: 320px; 
    background: rgba(20, 20, 20, 0.6); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 25px; 
    border-left: 1px solid rgba(255, 255, 255, 0.05); 
    overflow-y: auto; 
    box-shadow: -2px 0 15px rgba(0,0,0,0.5);
}

.main-content { 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
}

/* Gombok és linkek */
.back-btn { 
    position: absolute; 
    top: 25px; 
    left: 25px; 
    color: #aaa; 
    text-decoration: none; 
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(30, 30, 30, 0.6); 
    backdrop-filter: blur(5px);
    padding: 10px 20px; 
    border-radius: 4px; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    transition: all 0.3s ease; 
    z-index: 100;
}

.back-btn:hover { 
    color: #fff; 
    background: rgba(50, 50, 50, 0.8); 
    border-color: rgba(212, 175, 55, 0.5);
}

.spin-btn { 
    background: linear-gradient(135deg, #c5a059, #a67c00); 
    color: #111; 
    border: none; 
    padding: 15px; 
    width: 100%; 
    font-size: 18px; 
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600; 
    border-radius: 4px; 
    cursor: pointer; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.spin-btn:hover:not(:disabled) { 
    background: linear-gradient(135deg, #d4af37, #c5a059); 
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.6);
}

.spin-btn:disabled { 
    background: #333 !important; 
    color: #666 !important; 
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Kerék stílusok - letisztult */
.wheel-container { 
    position: relative; 
    width: 450px; 
    height: 450px; 
    margin-bottom: 30px; 
}

.wheel { 
    width: 100%; 
    height: 100%; 
    border-radius: 50%; 
    border: 6px solid #d4af37; 
    background-size: cover;
    background-position: center;
    /* EZ OLVASZTJA RÁ A SPIRÁL TEXTÚRÁT A SZÍNEKRE: */
    background-blend-mode: screen; 
    transition: transform 4s cubic-bezier(0.15, 0, 0.15, 1); 
    position: relative; 
    overflow: hidden; 
    backface-visibility: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 0 20px rgba(0,0,0,0.5);
}

.wheel-label { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 50%; 
    height: 80px; 
    margin-top: -40px; 
    transform-origin: 0 50%; 
    padding-right: 20px; 
    font-size: 13px; 
    font-weight: 500; 
    letter-spacing: 0.5px;
    color: #f5f5f5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8); 
    box-sizing: border-box; 
    pointer-events: none; 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
}

.wheel-label img {
    width: 45px;  
    height: 45px; 
    object-fit: contain; 
    flex-shrink: 0; 
    margin-left: 15px; 
    filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.6)); 
}

.wheel-label span {
    text-align: right;
    line-height: 1.2;
}

.pointer { 
    position: absolute; 
    top: -20px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 0; 
    height: 0; 
    border-left: 15px solid transparent; 
    border-right: 15px solid transparent; 
    border-top: 35px solid #eaeaea; 
    z-index: 10; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Roaster & Listák */
.roaster-item { 
    background: rgba(30, 30, 30, 0.5); 
    padding: 15px; 
    margin-bottom: 10px; 
    border-radius: 4px; 
    border: 1px solid rgba(255,255,255,0.03);
    border-left: 3px solid transparent; 
    display: flex; 
    align-items: center; 
    transition: all 0.2s ease;
}

.roaster-item.targetable { 
    cursor: pointer; 
}

.roaster-item.targetable:hover { 
    background: rgba(50, 50, 50, 0.6); 
}

.roaster-item.selected { 
    border-left-color: #d4af37; 
    background: rgba(212, 175, 55, 0.08); 
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.roaster-item.disabled { 
    opacity: 0.4; 
    cursor: not-allowed; 
}

.stat-box { 
    background: rgba(30, 30, 30, 0.5); 
    padding: 20px; 
    border-radius: 4px; 
    text-align: center; 
    margin-bottom: 15px; 
    border: 1px solid rgba(255,255,255,0.05); 
}

.win-item { 
    display: flex; 
    justify-content: space-between; 
    background: rgba(30, 30, 30, 0.5); 
    padding: 12px 15px; 
    margin-bottom: 8px; 
    border-radius: 4px; 
    border-left: 2px solid #a67c00; 
    font-size: 13px; 
    color: #ddd;
}

/* Modal - letisztult */
.modal-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.85); 
    backdrop-filter: blur(5px);
    display: none; 
    justify-content: center; 
    align-items: center; 
    z-index: 1000; 
}

.modal-box { 
    background: #1a1a1a; 
    border: 1px solid rgba(212, 175, 55, 0.3); 
    padding: 40px; 
    border-radius: 6px; 
    text-align: center; 
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.modal-box h3 {
    color: #d4af37;
    margin-top: 0;
    font-weight: 400;
}

.modal-btn { 
    padding: 12px 25px; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-weight: 500; 
    margin: 5px; 
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    transition: all 0.2s;
}

.btn-gold { 
    background: #c5a059; 
    color: #111; 
}

.btn-gold:hover { 
    background: #d4af37; 
}

.btn-dark { 
    background: #333; 
    color: #ccc; 
    border: 1px solid #444; 
}

.btn-dark:hover { 
    background: #444; 
    color: #fff; 
}

/* Scrollbar formázás az elegáns sötét témához */
::-webkit-scrollbar { 
    width: 6px; 
}

::-webkit-scrollbar-track { 
    background: transparent; 
}

::-webkit-scrollbar-thumb { 
    background: rgba(255,255,255,0.1); 
    border-radius: 3px; 
}

::-webkit-scrollbar-thumb:hover { 
    background: rgba(255,255,255,0.2); 
}


/* ==========================================================
   INDEX.PHP KIEGÉSZÍTÉS
   Ezt a részt csak az index.php használja.
   ========================================================== */

body.index-page {
    min-height: 100vh;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    align-items: center;

    background:
        linear-gradient(rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.88)),
        url('../host_img/defindex.png') no-repeat center center fixed;
    background-size: cover;
}

/* Finom betöltési animáció, hogy ne poppoljon be az oldal */
body.index-page .fade-in {
    opacity: 0;
    animation: softFadeIn 0.85s ease forwards;
}

body.index-page .fade-delay-1 {
    animation-delay: 0.10s;
}

body.index-page .fade-delay-2 {
    animation-delay: 0.22s;
}

body.index-page .fade-delay-3 {
    animation-delay: 0.34s;
}

body.index-page .fade-delay-4 {
    animation-delay: 0.46s;
}

@keyframes softFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Index navbar */
body.index-page .navbar {
    width: 100%;
    background: rgba(15, 15, 15, 0.76);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 4px 20px rgba(0,0,0,0.65);
    z-index: 10;
}

body.index-page .nav-brand {
    font-size: 20px;
    font-weight: bold;
    color: #d4af37;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

body.index-page .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

body.index-page .nav-links a {
    color: #aaa;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

body.index-page .nav-links a:hover {
    color: #fff;
}

body.index-page .nav-links a.active {
    color: #d4af37;
}

body.index-page .nav-links a.logout {
    color: #ff5252;
}

/* Index dashboard container */
body.index-page .container {
    width: 100%;
    max-width: 900px;
    padding: 60px 20px;
    text-align: center;
    box-sizing: border-box;
}

body.index-page h1 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #d4af37;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.28);
    border-bottom: none;
    padding-bottom: 0;
    font-size: 32px;
}

body.index-page .welcome-panel {
    background: rgba(20, 20, 20, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

/* Index extra linkek */
body.index-page .info-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

body.index-page .info-btn {
    background: rgba(30, 30, 30, 0.68);
    color: #d4af37;
    padding: 11px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid rgba(212, 175, 55, 0.28);
    transition: 0.2s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
}

body.index-page .info-btn:hover {
    background: rgba(50, 50, 50, 0.78);
    border-color: rgba(212, 175, 55, 0.7);
    color: #fff;
    transform: translateY(-1px);
}

/* Index wheel választó kártyák */
body.index-page .wheel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 25px;
}

body.index-page .wheel-card {
    background: rgba(20, 20, 20, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 34px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.55);
    position: relative;
    overflow: hidden;
}

body.index-page .wheel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), transparent 45%, rgba(0,0,0,0.15));
    pointer-events: none;
}

body.index-page .wheel-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 10px 30px rgba(0,0,0,0.75);
}

body.index-page .wheel-title {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.index-page .wheel-card p {
    position: relative;
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

body.index-page .xanax .wheel-title {
    color: #d4af37;
}

body.index-page .edvd .wheel-title {
    color: #c5a059;
}

body.index-page .coin-balance {
    position: relative;
    font-size: 18px;
    color: #aaa;
    background: rgba(30, 30, 30, 0.72);
    padding: 12px 15px;
    border-radius: 4px;
    margin-top: 22px;
    display: inline-block;
    border: 1px solid rgba(212, 175, 55, 0.22);
}

body.index-page .coin-balance strong {
    color: #fff;
}

/* Index API box */
body.index-page .api-box {
    background: rgba(20, 20, 20, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,82,82,0.45);
    padding: 28px;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.55);
}

body.index-page .api-box h3 {
    color: #ff5252;
    margin-top: 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.index-page .api-box p {
    color: #ccc;
    line-height: 1.5;
}

body.index-page input {
    padding: 12px;
    background: rgba(30, 30, 30, 0.82);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    width: 80%;
    max-width: 420px;
    border-radius: 4px;
    margin-bottom: 12px;
    outline: none;
}

body.index-page input:focus {
    border-color: rgba(212, 175, 55, 0.6);
}

body.index-page button {
    background: linear-gradient(135deg, #c5a059, #a67c00);
    color: #111;
    font-weight: bold;
    cursor: pointer;
    padding: 12px 25px;
    border-radius: 4px;
    border: none;
    transition: 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.index-page button:hover {
    background: linear-gradient(135deg, #d4af37, #c5a059);
    transform: translateY(-1px);
}

body.index-page .muted-text {
    color: #aaa;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Mobil nézet az index.php-hez */
@media (max-width: 700px) {
    body.index-page .navbar {
        flex-direction: column;
        gap: 12px;
    }

    body.index-page .nav-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    body.index-page .wheel-grid {
        grid-template-columns: 1fr;
    }

    body.index-page .container {
        padding: 40px 15px;
    }

    body.index-page .welcome-panel {
        padding: 25px 18px;
    }

    body.index-page h1 {
        font-size: 25px;
    }
}

/* ==========================================================
   ADMIN PANEL KIEGÉSZÍTÉS (setadminpermission.php)
   Háttér nélkül, külön admin-page class alatt.
   ========================================================== */

body.admin-page {
    background: #0c0c0c !important;
    min-height: 100vh !important;
    height: auto !important;
    overflow-x: auto !important;
    overflow-y: auto !important;
    display: block !important;
    padding: 20px;
    box-sizing: border-box;
}

/* Admin fade-in */
body.admin-page .fade-in {
    opacity: 0;
    animation: adminSoftFadeIn 0.75s ease forwards;
}

body.admin-page .fade-delay-1 {
    animation-delay: 0.10s;
}

body.admin-page .fade-delay-2 {
    animation-delay: 0.22s;
}

body.admin-page .fade-delay-3 {
    animation-delay: 0.34s;
}

body.admin-page .fade-delay-4 {
    animation-delay: 0.46s;
}

@keyframes adminSoftFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
        filter: blur(1px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

body.admin-page .box { 
    background: #1a1a1a; 
    padding: 30px; 
    border-radius: 8px; 
    width: 100%;
    max-width: 1250px; 
    box-sizing: border-box;
    margin: 40px auto; 
    border: 1px solid #333; 
    box-shadow: 0 0 20px rgba(0,0,0,0.5); 
    overflow-x: auto;
}

body.admin-page h2.admin-title { 
    color: #ff5252; 
    text-align: center; 
    border-bottom: 2px solid #333; 
    padding-bottom: 15px; 
    margin-top: 0;
}

body.admin-page input[type="text"].admin-input, 
body.admin-page input[type="password"].admin-input, 
body.admin-page input[type="number"].admin-input, 
body.admin-page input[type="email"].admin-input { 
    padding: 10px; 
    background: #222; 
    border: 1px solid #444; 
    color: #fff; 
    border-radius: 4px; 
    width: 220px; 
    margin-bottom: 10px;
    box-sizing: border-box;
}

body.admin-page button.admin-btn { 
    padding: 10px 15px; 
    cursor: pointer; 
    border-radius: 4px; 
    border: none; 
    font-weight: bold; 
    transition: 0.2s; 
    display: inline-block;
}

body.admin-page .btn-green { 
    background: #4caf50; 
    color: white; 
} 

body.admin-page .btn-green:hover { 
    background: #388e3c; 
}

body.admin-page .btn-red { 
    background: #f44336; 
    color: white; 
} 

body.admin-page .btn-red:hover { 
    background: #d32f2f; 
}

body.admin-page .btn-gray { 
    background: #555; 
    color: white; 
} 

body.admin-page .btn-gray:hover { 
    background: #333; 
}

body.admin-page .btn-tracker { 
    background: #e91e63; 
    color: white; 
    padding: 15px 30px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    transition: 0.2s; 
    font-size: 16px;
}

body.admin-page .btn-tracker:hover:not(:disabled) { 
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); 
    transform: translateY(-2px);
}

body.admin-page .btn-tracker:disabled { 
    background: #444 !important; 
    cursor: not-allowed; 
    box-shadow: none; 
    transform: none;
}

body.admin-page table { 
    width: 100%; 
    min-width: 900px;
    border-collapse: collapse; 
    margin-top: 20px; 
    background: #222; 
    border-radius: 8px; 
    overflow: hidden; 
}

body.admin-page th, 
body.admin-page td { 
    padding: 15px; 
    border-bottom: 1px solid #333; 
    text-align: left; 
    vertical-align: middle;
}

body.admin-page th { 
    background: #2c2c2c; 
    color: #00bcd4; 
}

body.admin-page table form {
    margin: 0;
}

body.admin-page .badge { 
    padding: 4px 10px; 
    border-radius: 12px; 
    font-size: 12px; 
    font-weight: bold;
}

body.admin-page .badge-admin { 
    background: #ffb74d; 
    color: #000; 
}

body.admin-page .badge-user { 
    background: #444; 
    color: #ccc; 
}

body.admin-page .badge-owner { 
    background: #ff5252; 
    color: #fff; 
}

body.admin-page .filter-bar { 
    margin-bottom: 20px; 
    display: flex; 
    gap: 10px; 
    align-items: center; 
    flex-wrap: wrap;
    background: #222; 
    padding: 15px; 
    border-radius: 5px; 
}

body.admin-page .success-msg { 
    background: #4caf50; 
    color: white; 
    padding: 10px; 
    border-radius: 5px; 
    text-align: center; 
    margin-bottom: 20px; 
    font-weight: bold; 
}

body.admin-page .abort-btn { 
    position: fixed; 
    top: 20px; 
    left: 20px; 
    background: #222; 
    border: 1px solid #444; 
    padding: 10px 15px; 
    color: #ff5252; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
    transition: 0.2s; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    z-index: 1000;
}

body.admin-page .abort-btn:hover { 
    background: #333; 
    color: #ff8a80; 
}

body.admin-page .action-container { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}

body.admin-page .action-container form {
    width: 100%;
}

/* Admin mobil/tablet stabilizálás */
@media (max-width: 900px) {
    body.admin-page {
        padding: 12px;
    }

    body.admin-page .box {
        margin: 25px auto;
        padding: 20px;
    }

    body.admin-page .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    body.admin-page .filter-bar .admin-input,
    body.admin-page .filter-bar button {
        width: 100% !important;
        margin-left: 0 !important;
    }

    body.admin-page .filter-bar label {
        margin-left: 0 !important;
    }

    body.admin-page .btn-tracker {
        width: 100%;
        box-sizing: border-box;
    }

    body.admin-page .abort-btn {
        top: 12px;
        left: 12px;
    }
}

@media (max-width: 600px) {
    body.admin-page .box {
        padding: 16px;
    }

    body.admin-page h2.admin-title {
        font-size: 20px;
        padding-top: 35px;
    }

    body.admin-page input[type="text"].admin-input,
    body.admin-page input[type="password"].admin-input,
    body.admin-page input[type="number"].admin-input,
    body.admin-page input[type="email"].admin-input {
        width: 100%;
    }
}
/* ==========================================================
   ADMIN PANEL SZOLID SZÍNEK + LOGIN/DASHBOARD FINOMÍTÁS
   ========================================================== */

body.admin-page.admin-login .box {
    max-width: 720px;
}

body.admin-page.admin-login form {
    text-align: center;
    padding: 20px;
}

body.admin-page.admin-login .admin-input {
    width: 260px !important;
}

body.admin-page.admin-login button.admin-btn {
    width: 260px !important;
}

/* Szolid admin tool gombok */
body.admin-page .admin-tools {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

body.admin-page .btn-tracker {
    background: #2f343a;
    color: #eaeaea;
    border: 1px solid #444;
}

body.admin-page .btn-tracker:hover:not(:disabled) {
    background: #3a4047;
    border-color: #d4af37;
    color: #fff;
}

body.admin-page .btn-tracker.btn-tool-report {
    background: #2f3a33;
    border-color: rgba(76, 175, 80, 0.35);
}

body.admin-page .btn-tracker.btn-tool-price {
    background: #3a3529;
    border-color: rgba(212, 175, 55, 0.35);
}

body.admin-page .btn-tracker.btn-tool-transaction {
    background: #342f3a;
    border-color: rgba(171, 71, 188, 0.28);
}

/* Admin welcome header */
body.admin-page .admin-welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    gap: 15px;
}

body.admin-page .admin-welcome-row h3 {
    margin: 0;
    color: #fff;
}

body.admin-page .admin-welcome-name {
    color: #d4af37;
}

body.admin-page .admin-role-text {
    color: #aaa;
    font-size: 12px;
}

/* Empty state, amikor nincs keresés */
body.admin-page .admin-empty-state {
    background: #202020;
    border: 1px dashed #444;
    color: #aaa;
    padding: 22px;
    border-radius: 6px;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

body.admin-page .admin-empty-state strong {
    color: #d4af37;
}

/* Szolid action gombok */
body.admin-page .btn-soft-green {
    background: #3f7d42 !important;
    color: #fff !important;
}

body.admin-page .btn-soft-green:hover {
    background: #4c9350 !important;
}

body.admin-page .btn-soft-red {
    background: #9d2f2f !important;
    color: #fff !important;
}

body.admin-page .btn-soft-red:hover {
    background: #b83a3a !important;
}

body.admin-page .btn-soft-blue {
    background: #2f6973 !important;
    color: #fff !important;
}

body.admin-page .btn-soft-blue:hover {
    background: #387d89 !important;
}

body.admin-page .btn-soft-gray {
    background: #555 !important;
    color: #fff !important;
}

body.admin-page .btn-soft-gray:hover {
    background: #666 !important;
}

@media (max-width: 800px) {
    body.admin-page .admin-welcome-row {
        flex-direction: column;
        align-items: flex-start;
    }

    body.admin-page .admin-welcome-row .admin-btn {
        width: 100%;
        text-align: center;
    }
}