/* ============================================================
   GHOST_CORE V6.5 // MOBILE_REMOTE_LOGIC // NO_EYE_CANDY
   ============================================================ */

/* --- 1. CORE SETUP --- */
#mobile-interface { 
    display: none; 
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000; /* Tiefschwarz für Kontrast */
    flex-direction: column; 
    align-items: center;
    padding: 15px;
    overflow-y: auto;
}

body.mobile-setup #pc-viewport-wrapper { 
    display: none !important; 
}

body.mobile-setup #mobile-interface { 
    display: flex; 
}

/* --- 2. DISPLAY (DIE ANZEIGE) --- */
#mobile-log-display {
    width: 100%;
    min-height: 200px;
    background: rgba(0, 20, 15, 0.9);
    border: 1px solid var(--neon);
    border-left: 4px solid var(--neon);
    margin-bottom: 20px;
    padding: 15px;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--neon);
    box-sizing: border-box;
    /* Clean: Kein Hintergrund-Effekt mehr */
}

/* --- 3. REMOTE CONTROL GRID (DIE BUTTONS) --- */
.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.remote-btn {
    height: 70px;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--neon);
    color: var(--neon);
    font-family: var(--font-mono);
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.1s;
}

/* Feedback beim Tippen */
.remote-btn:active {
    background: var(--neon);
    color: #000;
}

.btn-alert { 
    border-color: #ff3366 !important; 
    color: #ff3366 !important; 
}

/* --- 4. NAVIGATION --- */
#mobile-home {
    margin-top: auto;
    padding: 20px;
    font-size: 2rem;
    color: var(--neon);
}

/* Tabellen-Anpassung für die kleine Anzeige */
#mobile-log-display table {
    width: 100%;
    font-size: 0.8rem;
    border-collapse: collapse;
}

#mobile-log-display td {
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    padding: 8px 4px;
}