:root {
    --gne-navy: #0A1128;
    --gne-navy-light: #15234b;
    --gne-gold-light: #D4AF37;
    --gne-text: #ffffff;
    --gne-muted: #a0aec0;
}

/* Floating Launcher Styling button */
#gne-bot-launcher {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gne-gold-light) 0%, #AA7C11 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: transform 0.3s ease;
}
#gne-bot-launcher:hover { transform: scale(1.08); }
#gne-bot-launcher svg { width: 28px; height: 28px; fill: var(--gne-navy); }

/* Trigger Notification Attention Badge */
#gne-bot-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: red;
    color: white;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Chat Engine Window Layout Box */
#gne-chat-widget {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 380px;
    max-width: 90vw;
    height: 500px;
    background: var(--gne-navy);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 999998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}
#gne-chat-widget.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Internal Chat Structural Components */
#gne-chat-header {
    background: var(--gne-navy-light);
    padding: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
#gne-chat-header h4 { margin: 0; font-size: 15px; color: var(--gne-gold-light); }
#gne-chat-header p { margin: 0; font-size: 11px; color: var(--gne-muted); }

#gne-chat-logs {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Bubble Styling Engines */
.gne-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    line-height: 1.4;
}
.gne-msg-bot { background: var(--gne-navy-light); color: white; align-self: flex-start; }
.gne-msg-user { background: var(--gne-gold-light); color: var(--gne-navy); align-self: flex-end; font-weight: 500; }

/* Decision Branch Selector Buttons */
#gne-static-choices { display: flex; flex-direction: column; gap: 8px; margin-top: 5px; }
.gne-choice-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--gne-gold-light);
    color: var(--gne-gold-light);
    padding: 10px;
    border-radius: 6px;
    text-align: left;
    font-size: 12.5px;
    cursor: pointer;
    transition: background 0.2s;
}
.gne-choice-btn:hover { background: rgba(212, 175, 55, 0.1); }

/* Message Input Execution Panel Bar */
#gne-chat-input-area {
    display: flex;
    padding: 10px;
    background: var(--gne-navy-light);
    border-top: 1px solid rgba(255,255,255,0.05);
}
#gne-chat-field {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
}
#gne-chat-field:focus { outline: none; border-color: var(--gne-gold-light); }
#gne-chat-send {
    background: var(--gne-gold-light);
    color: var(--gne-navy);
    border: none;
    padding: 0 15px;
    margin-left: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
}