/* D:\Agent\static\style.css */
:root {
    --glass-bg: rgba(20, 25, 40, 0.45);
    --glass-border: rgba(255, 255, 255, 0.15);
    --neon-cyan: #00f2ff;
    --text-main: #e0e0e0;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    font-family: 'Segoe UI', Roboto, Helvetica, sans-serif;
    /* DEIN HINTERGRUNDBILD */
    background: #070b14 url('lia_bg.jpg') no-repeat center center fixed;
    background-size: cover; 
    color: var(--text-main);
    overflow: hidden; 
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 255, 255, 0.05);
    padding: 20px;
}

.static-header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

/* TÜRKISE ÜBERSCHRIFTEN */
.drag-handle {
    cursor: move;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px 10px 0 0;
    margin: -20px -20px 15px -20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--neon-cyan); /* TÜRKIS */
    letter-spacing: 1px;
    border-bottom: 1px solid var(--glass-border);
    text-transform: uppercase;
}

.floating-panel {
    position: absolute;
    min-width: 320px;
    z-index: 100;
}

/* SYSTEM-PROTOKOLL */
#panel-left { top: 100px; left: 20px; width: 400px; }
#log-output {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem; /* GRÖSSER */
    color: var(--neon-cyan);
    height: 380px;
    overflow-y: auto;
    line-height: 1.4;
}

/* TELEMETRIE & RECHTSBÜNDIGE WERTE */
#panel-right { top: 100px; right: 20px; width: 300px; }
.widget {
    display: flex;
    justify-content: space-between; /* Icon links, Daten rechts */
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.widget .icon { font-size: 1.5rem; color: var(--neon-cyan); }
.widget-data { 
    text-align: right; /* RECHTSBÜNDIG */
    display: flex;
    flex-direction: column;
}
.widget-data .label { 
    font-size: 0.7rem; 
    color: var(--neon-cyan); /* TÜRKISE LABELS */
    text-transform: uppercase;
    margin-bottom: 2px;
}
.widget-data .value { font-size: 1.1rem; font-weight: bold; color: #fff; }

/* AGENDA */
#panel-calendar { top: 420px; right: 20px; width: 300px; }
.cal-item { padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cal-time { color: var(--neon-cyan); font-weight: bold; }

/* KOMMUNIKATION */
#panel-chat {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
}
#chat-output {
    height: 180px;
    overflow-y: auto;
    margin-bottom: 10px;
    font-size: 1.15rem; /* GRÖSSER */
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chat-bubble { padding: 5px; }
.boss-msg { color: #00ff41; }
.lia-msg { color: #ffffff; }

.chat-input-area { display: flex; gap: 10px; padding-top: 10px; border-top: 1px solid var(--glass-border); }
#user-input {
    flex-grow: 1; background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border);
    color: #fff; padding: 10px; border-radius: 8px; outline: none;
}
#send-btn { background: var(--neon-cyan); border: none; padding: 10px 20px; border-radius: 8px; font-weight: bold; cursor: pointer; }