    /* Chatbot Icon */
        #chatbot-icon {
            position: fixed;
            top: 55px;
            right: 120px;
            width: 65px;
            height: 65px;
            cursor: pointer;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Feedback Icon */
        #feedback-icon {
            position: fixed;
            top: 55px;
            right: 190px;
            width: 55px;
            height: 55px;
            cursor: pointer;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            visibility: visible !important;
            opacity: 1 !important;
            background: transparent;
        }
        
        #feedback-icon * {
            visibility: visible !important;
            opacity: 1 !important;
        }

        /* Lottie Animation Container */
        #lottie-animation {
            width: 100%;
            height: 100%;
        }

        #feedback-lottie-animation {
            width: 100%;
            height: 100%;
            display: block;
            visibility: visible !important;
            opacity: 1 !important;
        }

        /* Tooltip */
        #chatbot-icon::after {
            content: "Hier kann man mit KI alles im Austria-Forum und NID wie mit einem Chatbot suchen";
            position: absolute;
            top: 70px;
            right: 0;
            background-color: #662D91;
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            white-space: normal;
            max-width: 400px;
            min-width: 300px;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            box-shadow: 0 0 5px rgba(0,0,0,0.3);
            text-align: left;
            line-height: 1.4;
        }
        
        #chatbot-icon:hover::after { 
            opacity: 1; 
        }

        #feedback-icon::after {
            content: "Ihre Meinung ist uns wichtig – senden Sie uns Feedback oder Vorschläge";
            position: absolute;
            top: 70px;
            right: 0;
            background-color: #662D91;
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            white-space: normal;
            max-width: 400px;
            min-width: 300px;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            box-shadow: 0 0 5px rgba(0,0,0,0.3);
            text-align: left;
            line-height: 1.4;
        }
        
        #feedback-icon:hover::after { 
            opacity: 1; 
        }

/* ================================
   Chatbot Container + Window
================================ */
#chatbot-container {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 80%;
  height: 80%;
  border: 2px solid #662D91;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

#chatbot-container.open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

#chatbot-iframe-wrapper {
  flex: 1;
  width: 100%;
  overflow: hidden;
}
#chatbot-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#chatbot-header {
  padding: 5px;
  background-color: #662D91;
  color: #fff;
  text-align: left;
  border-bottom: 1px solid #ccc;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#chatbot-header h3 {
  margin: 0;
}
#chatbot-header button {
  position: absolute;
  top: 5px;
  right: 10px;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

#chatbot-body {
  height: 90%;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#chatbot-welcome {
  font-weight: 400;
  color: #8b7866ab;
  font-size: small;
}
#chatbot-messages {
  margin-bottom: 10px;
}
#chatbot-messages p {
  margin: 5px 0;
}
.user-message {
  text-align: right;
  margin-bottom: 10px;
}
.bot-message {
  text-align: left;
  margin-bottom: 10px;
}
#chatbot-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  margin-top: auto;
}
#user-input {
  flex: 1;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#send-button {
  padding: 5px 10px;
  margin-left: 5px;
  border: none;
  border-radius: 5px;
  background-color: #662D91;
  color: #fff;
  cursor: pointer;
}
#send-button:hover {
  background-color: #555;
}
