
#mm-assistant-chat {
    display: none;
    position: absolute;
    bottom: 110px;
    right: 0;
    width: 320px;
    background: #1a1d22; /* Dunklerer Hintergrund */
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.5);
    border: 1px solid #333;
    overflow: hidden;
    z-index: 10000;
}

.chat-header {
    background: #0099ff;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: white;
}

.status-dot {
    height: 10px;
    width: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 0 5px #00ff00;
}

#mm-assistant-content {
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 14px;
}

.chat-input-area {
    background: #111;
    padding: 10px;
    display: flex;
    gap: 8px;
    border-top: 1px solid #333;
}

#mm-assistant-input {
    flex: 1;
    background: #222;
    border: 1px solid #444;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    outline: none;
}

#mm-assistant-send {
    background: #0099ff;
    border: none;
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

#mm-assistant-send:hover { background: #0077cc; }