/* Chatbot banner styles */
#chatbot {
	z-index:100;
}
/* Chatbot banner styles */
    #chatbotBanner {
      background-color: #00274d; /* Dark blue color */
      color: white;
      display: flex;
      align-items: center;
      padding: 10px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    #chatbotTitleContainer {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    #chatbotLogo {
      width: 40px; /* Adjust size as needed */
      height: 40px;
      border-radius: 50%; /* Make it circular */
    }

    #chatbotTitle {
      font-size: 18px;
      font-weight: bold;
      margin: 0;
    }

    /* Ensure iframe takes remaining space below the banner */
    #chatbotwebchat {
      flex: 1;
      height: calc(100% - 50px); /* Subtract banner height */
    }

    /* Container to hold button and chat window */
    #chatbot {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    /* Chatbot button - stays fixed at bottom right */
    #chatbotButton {
      background-image: url("https://twc-holding.s3.eu-north-1.amazonaws.com/Resources/chat-launchbutton-icon.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border: none;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      cursor: pointer;
      z-index: 10;
      position: fixed;
      bottom: 20px;
      right: 20px;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    /* Tooltip styling */
    #chatbotTooltip {
      visibility: hidden; /* Hidden by default */
      background-color: black;
      color: white;
      text-align: center;
      padding: 5px 10px;
      border-radius: 5px;
      position: absolute;
      bottom: 80px; /* Position above the button */
      right: 50%;
      transform: translateX(50%);
      font-size: 14px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
    }

    /* Show tooltip when hovering */
    #chatbotButton:hover #chatbotTooltip {
      visibility: visible;
      opacity: 1;
    }
    /* Chat window styles */
    #chatbotWindow {
      display: none; /* hidden by default */
      width: 400px;
      height: 500px;
      border: 1px solid #ccc;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 70px; /* Space for the button below */
    }

    /* Chat iframe styles */
    #chatbotIframe {
      width: 100%;
      height: 100%;
      border: none;
    }