/* ChatGPT Badexperten - Frontend Chat Styles */

/* Container for the chat components */
#cgb-chat-container {
    position: relative;
    z-index: 9999;
}

/* Chat-Bubble Styling */
#cgb-chat-bubble {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0073aa; /* Standardfarbe; wird dynamisch überschrieben */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

/* Chat-Fenster Styling */
#cgb-chat-window {
    position: fixed;
    width: 300px;
    max-height: 400px;
    background-color: #ffffff; /* Standardhintergrund; kann dynamisch angepasst werden */
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    z-index: 10000;
}

/* Header des Chat-Fensters */
#cgb-chat-header {
    background: #f1f1f1;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Inhalt des Chat-Fensters */
#cgb-chat-content {
    padding: 10px;
    height: 250px;
    overflow-y: auto;
    font-size: 14px;
}

/* Eingabebereich des Chats */
#cgb-chat-input-area {
    padding: 10px;
    border-top: 1px solid #ccc;
}

/* Formularfeld im Chat */
#cgb-chat-form input[type="text"] {
    width: calc(100% - 50px);
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Senden-Button im Chat */
#cgb-chat-form button {
    width: 40px;
    padding: 5px;
    border: none;
    background-color: #0073aa;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}