#chatbot-button {

    width: 100px;
    height: 100px;
    position: fixed;
    bottom: 35px;
    left: 2.5%;
    background-image: url(../img/chatbot-1.png);
    background-color: transparent;
    border-radius: 25px;
}

#chatbot-button:hover {

    background-image: url(../img/chatbot-2.png);
}

.chatbot {

  display: none;
  background-color: #474947;
  border-radius: 15px;
  border: 2px solid black;
  position: fixed;
  top: 100px;
  right: 0; 
  width: 80%;
  max-height: 70%;
  margin: 0;
  padding: 0;
  overflow: scroll;
  transition: top 0.5s;
  scrollbar-width: 0;
  z-index: 9999;
}




#send-button {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    margin-bottom: 20px;
  }
  
  .user-input {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
  
  #user-input {
    margin-bottom: 10px;
    font-size: 18px;
    padding: 10px;
    width: 65%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
  }
  
  #send-button{

    height: 40px;
    box-shadow: 3px 4px 0px 0px #f4f4f87e;
    background:linear-gradient(to bottom, #000000 5%, #1329f0 100%);
    background-color:#000000;
    border-radius:15px;
    border:1px solid #fafafabe;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:20px;
    font-weight:bold;
    text-decoration:none;
    text-shadow:0px 1px 0px #2f6627;
  }

  #send-button:hover{

    box-shadow: 3px 4px 0px 0px #0c0c9e7e;
    background:linear-gradient(trgba(11, 11, 172, 0.494) #000000 5%, #1329f0 100%);
    background-color:#fcf5f5;
    border-radius:15px;
    border:1px solid #fafafabe;
    cursor:pointer;
    color:#0c8516;
    text-shadow:5px 5px 5px #000000;
  }
  .chat-messages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    background-color: rgb(85, 88, 92);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
  }
  
  .chat-messages .message {
    align-self: center; 
    background-color: #140b68;
    color: rgb(192, 188, 188);
    border-radius: 10px;
    margin: 5px;
  }
  
  .bot-message, .user-message {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .user-message {
    width: 94%;
    text-align: right; 
    background-color: #140b68;
    color: #fff; 
    border-radius: 10px; 
    padding: 1%;
    margin: 1%;
  }
  
  .bot-message {
    text-align: left; 
    background-color: #e0e0e0; 
    border-radius: 10px; 
    padding: 1%;
    margin: 1%;
    color: #000;
  }
  
.bot-liste{
    width: 100%;
    height: 50%;
    display: none;
}

.ja-nein-leiste { display: flex; justify-content: center;}
.ja-button      {display: none; width: 100px; margin: 20px;}
.nein-button    {display: none; width: 100px; margin: 20px;}