/* ==========================================================================
   1. ADMIN BUTTONS & MENUS
   ========================================================================== */
.admin-buttons {
    width: 320px;
    margin: 0 auto;
}

.admin-btn {
    display: block;
    background: #000;
    color: #ff7e00;
    padding: 12px 18px;
    margin: 10px 0;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    border: 1px solid #ff7e00;
    box-shadow: 0 0 8px rgba(255, 126, 0, 0.2);
    transition: 0.2s ease-in-out;
}

.admin-btn:hover {
    background: #ff7e00;
    color: #000;
    box-shadow: 0 0 15px #ff7e00;
    transform: scale(1.03);
}

.admin-red {
    border-color: #ff3333;
    color: #ff3333;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.3);
}

.admin-red:hover {
    background: #ff3333;
    color: #000;
    box-shadow: 0 0 15px #ff3333;
}

/* ==========================================================================
   2. BOXES & WRAPPERS (TABLE WRAPPERS, BLACK BOXES, UPLOAD)
   ========================================================================== */
.admin-table-wrapper {
    width: 95%;
    margin: 0 auto;
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ff7e00;
    box-shadow: 0 0 15px rgba(255, 126, 0, 0.15);
    margin-top: 20px;
}

.black-box {
    width: 95%;
    margin: 0 auto;
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ff7e00;
    box-shadow: 0 0 15px rgba(255, 126, 0, 0.15);
    margin-top: 20px;
}

.upload-box {
    width: 420px;
    margin: 0 auto;
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ff7e00;
    box-shadow: 0 0 15px rgba(255, 126, 0, 0.15);
    margin-top: 20px;
    color: #fff;
}

.upload-box h2, 
.upload-box h5 {
    margin: 10px 0;
}
.store-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #1a1a1a;
    border: 1px solid #ff7e00;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(255, 126, 0, 0.1);
    color: #fff;
}

.store-box h2 {
    margin-bottom: 20px;
}

.trans-box {
    width: 95%;
    margin: 0 auto;
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ff7e00;
    box-shadow: 0 0 15px rgba(255, 126, 0, 0.15);
    margin-top: 20px;
    color: #fff;
}

.withdraw-box {
    width: 450px;
    margin: 0 auto;
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ff7e00;
    box-shadow: 0 0 15px rgba(255, 126, 0, 0.15);
    margin-top: 20px;
    color: #fff;
    text-align: center;
}

.home-box {
    width: 500px;
    margin: 0 auto;
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ff7e00;
    box-shadow: 0 0 15px rgba(255, 126, 0, 0.15);
    margin-top: 20px;
    color: #fff;
    text-align: center;
}

/* ==========================================================================
   3. TABLES STYLE & HOVERS
   ========================================================================== */
.admin-table, .black-table, .trans-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    font-size: 16px;
}

.admin-table th, .black-table th, .trans-table th {
    background: #000;
    padding: 12px;
    border-bottom: 2px solid #ff7e00;
    color: #ff7e00;
    text-align: left;
}

.admin-table td, .black-table td, .trans-table td {
    padding: 10px;
    border-bottom: 1px solid #222;
}

.admin-table tr:hover, .black-table tr:hover, .trans-table tr:hover {
    background: #1a1a1a;
}

/* ==========================================================================
   4. INPUTS, TEXTAREAS & FIELDS
   ========================================================================== */
.upload-input, .store-input, .store-textarea, .withdraw-input, .search-input {
    width: 100%;
    background: #000;
    color: #ff7e00;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ff7e00;
    margin-top: 10px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}

.store-textarea {
    resize: none;
    height: 120px;
}

.search-input {
    width: 90%;
    padding: 8px;
}
/* ==========================================================================
   5. BUTTON LINKS & NAVIGATION (TABLES, SAVE, UPLOAD, BACK)
   ========================================================================== */
.table-btn, .upload-btn, .save-btn, .withdraw-btn, .back-btn, .menu-btn, .store-btn, .search-submit {
    display: inline-block;
    background: #000;
    color: #ff7e00;
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid #ff7e00;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 126, 0, 0.15);
    transition: 0.2s ease-in-out;
}

.table-btn:hover, .upload-btn:hover, .save-btn:hover, .withdraw-btn:hover, .back-btn:hover, .menu-btn:hover, .store-btn:hover, .search-submit:hover {
    background: #ff7e00;
    color: #000;
    box-shadow: 0 0 15px #ff7e00;
    transform: scale(1.05);
}

.upload-btn, .save-btn, .withdraw-btn {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    font-size: 18px;
}

.back-btn {
    display: block;
    width: 240px;
    margin: 30px auto;
    padding: 12px;
    font-size: 18px;
    text-align: center;
}

.menu-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    font-size: 20px;
    text-align: center;
}

.search-submit {
    margin-top: 10px;
    padding: 8px 20px;
}

/* 🔥 ΜΕΤΑΤΡΟΠΗ ΤΟΥ BLUE GRADIENT BUTTON ΣΕ ORANGE/CORAL CYBERPUNK GRADIENT */
.btn-blue-real {
    background: linear-gradient(#ff9100, #ff5722);
    border: 1px solid #d84315;
    color: white !important;
    padding: 12px 28px;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    box-shadow: 0 3px 10px rgba(255, 87, 34, 0.3);
    transition: 0.2s ease-in-out;
}

.btn-blue-real:hover {
    background: linear-gradient(#ffa726, #ff7043);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.5);
}

/* ==========================================================================
   6. MARKET CARDS, SEARCH BOX & PAGINATION
   ========================================================================== */
.store-card {
    width: 260px;
    background: #111;
    border: 1px solid #ff7e00;
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.store-card img {
    border-radius: 6px;
    border: 1px solid #ff7e00;
}

.store-name {
    margin-top: 10px;
    font-size: 18px;
    color: #ff7e00;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 126, 0, 0.3);
}

.search-box {
    margin-top: 20px;
    padding: 15px;
    background: #111;
    border: 1px solid #ff7e00;
    border-radius: 10px;
    width: 350px;
}

#pagenav span, #pagenav a span {
    padding: 6px 10px;
    margin: 3px;
    border-radius: 5px;
    border: 1px solid #ff7e00;
    color: #ff7e00;
    background: #000;
    display: inline-block;
}

#pagenav .current {
    background: #ff7e00;
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 10px #ff7e00;
}
/* ==========================================================================
   7. TITLES & NEON TEXT STYLES (CYBERPUNK ORANGE)
   ========================================================================== */
.page-title, .manager-title {
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ff7e00;
    text-shadow: 
        0 0 10px #ff7e00,
        0 0 20px rgba(255, 120, 0, 0.7),
        0 0 30px rgba(255, 120, 0, 0.4);
}

.page-title { font-size: 34px; margin: 25px 0 30px 0; }
.manager-title { font-size: 32px; margin-top: 20px; margin-bottom: 25px; }

.admin-title, .admin-menu-title, .user-balance-title, .trans-title, .home-title, .withdraw-box h3 {
    color: #ff7e00;
    font-weight: bold;
    text-shadow: 0 0 10px #ff7e00, 0 0 20px rgba(255, 120, 0, 0.5);
}

.admin-title { font-size: 28px; margin-bottom: 20px; }
.admin-menu-title { font-size: 28px; margin-bottom: 20px; }
.user-balance-title { font-size: 26px; }
.trans-title { font-size: 22px; margin-bottom: 15px; }
.home-title { font-size: 26px; margin-bottom: 10px; }
.withdraw-box h3 { margin-bottom: 15px; }

.admin-menu-subtitle {
    font-size: 22px;
    color: #ff7e00; /* Μετατροπή από μπλε σε Πορτοκαλί */
    text-shadow: 0 0 12px #ff7e00;
    font-weight: bold;
}

.store-title a {
    color: #ff9c33 !important;
    text-shadow: 0 0 6px #ff7b00 !important;
    font-weight: bold;
}

.neon-orange {
    color: #ff7e00;
    text-shadow: 0 0 10px #ff7e00;
    font-weight: bold;
}

.neon-blue {
    color: #ff9c33; /* Μετατροπή από μπλε σε Light Cyberpunk Orange */
    text-shadow: 0 0 10px #ff7b00;
    font-weight: bold;
}

/* ==========================================================================
   8. WELCOME BOXES, INFO TEXT & ALERTS
   ========================================================================== */
.admin-welcome-box, .admin-menu-box, .user-balance-box {
    width: 80%;
    background: #111;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ff7e00;
    box-shadow: 0 0 25px rgba(255, 120, 0, 0.2);
}

.admin-welcome-box { margin: 40px auto; padding: 25px; }
.admin-menu-box { margin: 40px auto; padding: 30px; }
.user-balance-box { margin: 20px auto; padding: 20px; }

.admin-info, .admin-menu-info, .home-balance {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
}
.admin-menu-info { margin-bottom: 25px; }
.home-balance { margin-bottom: 20px; }

.success-box {
    background: #b25900; /* Αλλαγή από πράσινο σε βαθύ Cyberpunk Πορτοκαλί για εναρμόνιση */
    border: 1px solid #ff7e00;
    padding: 15px;
    border-radius: 6px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(255,126,0,0.2);
}

/* ==========================================================================
   9. SIDEBOX ADS & RIGHT SIDEBAR PANEL
   ========================================================================== */
#right-sidebox {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(10, 14, 23, 0.95); /* Ανθρακί ημιδιάφανο background όπως το AdminSim */
    border-left: 2px solid #ff7e00;
    box-shadow: -4px 0 20px rgba(255, 126, 0, 0.25);
    padding: 20px;
    overflow-y: auto;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.sidebox-ads {
    width: 100%;
}

.sidebox-box {
    background: rgba(0,0,0,0.55);
    border: 1px solid #ff7e00;
    box-shadow: 0 0 12px rgba(255, 126, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
    transition: 0.2s;
    display: block;
}

.sidebox-box:hover {
    transform: scale(1.03);
    box-shadow: 0 0 18px #ff7e00;
}

.sidebox-img {
    width: 100%;
    border-radius: 6px;
    border: 2px solid #ff7e00;
    box-shadow: 0 0 10px rgba(255, 126, 0, 0.3);
    margin-bottom: 10px;
}

.sidebox-title {
    font-size: 16px;
    font-weight: bold;
    color: #ff9c33;
    text-align: center;
    text-shadow: 0 0 6px #ff7e00;
}

.sidebox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.sidebox-thumb {
    display: inline-block;
}

.sidebox-thumb-img {
    width: 170px;
    height: 170px;
    border-radius: 8px;
    border: 2px solid #ff7e00;
    box-shadow: 0 0 10px rgba(255, 126, 0, 0.25);
    transition: 0.2s;
}

.sidebox-thumb-img:hover {
    box-shadow: 0 0 18px #ff7e00;
    transform: scale(1.05);
}

/* ==========================================================================
   10. CATEGORY ICONS (MARKET MENU LEFT)
   ========================================================================== */
.cat-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    border-radius: 6px;
    background: rgba(255, 126, 0, 0.15); /* Μετατροπή σε πορτοκαλί αύρα */
    color: #ff9c33;
    font-size: 14px;
    box-shadow: 0 0 6px rgba(255, 126, 0, 0.3);
}
