body { font-family: Arial, sans-serif; background-color: white; text-align: center; margin: 0; padding: 0; color: black; } h2 { margin-top: 20px; color: #008B8B; } /* Chatbot Button */ #chatbot-button { position: fixed; bottom: 60px; right: 20px; background-color: #008B8B; color: #ffffff; border: none; border-radius: 50%; width: 60px; height: 60px; font-size: 28px; cursor: pointer; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 1000; } /* Chatbot Window (50px breiter und höher) */ #chatbot-window { display: none; position: fixed; bottom: 80px; right: 20px; width: 350px; /* vorher 300px */ height: 450px; /* vorher 400px */ background-color: white; border: 2px solid #008B8B; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.3); overflow: hidden; resize: none; color: black; display: flex; flex-direction: column; z-index: 1000; } #chatbot-header { display: flex; align-items: center; justify-content: space-between; background-color: #008B8B; color: white; padding: 12px; text-align: left; font-size: 18px; font-weight: bold; cursor: grab; position: relative; } #resize-handle { position: absolute; top: 5px; left: 5px; width: 15px; height: 15px; background-color: white; border: 2px solid #1d2b53; cursor: nwse-resize; } #chatbot-header img { height: 30px; margin-right: 10px; margin-left: 5mm; } #chatbot-messages { flex-grow: 1; padding: 10px; overflow-y: auto; font-size: 14px; text-align: left; color: black; height: calc(90% - 90px); } .chat-input-container { display: flex; height: 50px; align-items: center; padding: 5px; border-top: 2px solid #008B8B; background-color: white; flex-shrink: 0; position: absolute; bottom: 0; width: 100%; } #chatbot-input { flex-grow: 1; height: 100%; padding: 5px; border: 1px solid #008B8B; background-color: white; color: black; font-size: 14px; border-radius: 5px; outline: none; resize: none; min-height: 40px; } #send-button { margin-left: 10px; padding: 10px; background-color: #008B8B; color: white; border: none; cursor: pointer; font-size: 16px; border-radius: 5px; } #chat-response p { line-height: 1.6; /* Zeilenhöhe innerhalb der Nachricht */ margin-top: 12px; /* Abstand nach oben */ margin-bottom: 12px; /* Abstand nach unten */ } /* Mobile Ansicht */ @media (max-width: 600px) { #chatbot-window { width: 300px; /* vorher 300px */ height: 350px; /* vorher 350px */ bottom: 100px; right: 20px; } #chatbot-button { bottom: 80px; right: 15px; width: 50px; height: 50px; font-size: 24px; } }