#chatgpt-container {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 400px;
    height: 500px;
    /*background-color: #f5f5f5;*/
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 9999;
    transition: height 0.3s;
}

#chatgpt-messages {
    height: calc(100% - 120px); /* Höhe abzüglich des Eingabebereichs und des Buttons "Neue Unterhaltung starten" */
    overflow-y: auto;
    padding: 10px;
    background-color: #ffffff;
}

#chatgpt-input {
    width: 100%;
    padding: 10px;
    border: none;
    border-top: 1px solid #ccc;
    resize: none;
}

#chatgpt-submit {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    /*background-color: #4caf50;
    color: #fff;*/
    font-weight: bold;
    cursor: pointer;
}

#chatgpt-reset {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    /*background-color: #f44336;
    color: #fff;*/
    font-weight: bold;
    cursor: pointer;
}

#chatgpt-minimize {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

#chatgpt-minimize::before {
    content: "-";
    display: block;
    text-align: center;
    line-height: 20px;
    /*color: #fff;*/
}

#chatgpt-container.minimized #chatgpt-minimize::before {
    content: "+";
}

#chatgpt-container.minimized {
    height: 40px;
}

#chatgpt-container.minimized #chatgpt-messages {
    display: none;
}

#chatgpt-minimize:hover {
    /*background-color: #999;*/
}

#chatgpt-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
