#districtButton {
    background-color: #2196F3;
    color: white;
    border-radius: 10px;
  }

  #blockButton {
    background-color: #2196F3;
    color: white;
    border-radius: 10px;
  }

  #gpButton {
    background-color: #2196F3;
    color: white;
    border-radius: 10px;
  }

  .message {
    padding: 5px;
    margin: 5px;
    border-radius: 10px;
    max-width: 70%;
    clear: both;
  }

  .user {
    background-color: #4CAF50;
    color: white;
    float: right;
  }

  .bot {
    background-color: #2196F3;
    color: white;
    float: left;
  }

  .outgoingMsg {
    border-radius: 10px 10px 10px 10px;
    background-color: beige !important;
    position: absolute;
    bottom: 80px;
    right: -85px;
    max-width: 200px;
  }

  .outgoingMsg::after {
    content: "";
    height: 10px;
    width: 10px;
    right: 10px;
    border-radius: 0px 0px 0px 50px;
    top: 96%;
    background-color: beige;
    position: absolute;
  }

  .bg-dark1 {
    background-image: url(./css/bg.png);
    /* / background-image: url('https://fdms-sfc.com/assets/images/desktop.png'); / */
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
  }

  #buttons-container {
    display: inline-block !important;
  }
  #chatbot-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e89747;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-image: url('.assets/images/panchayat_logo.png'); */
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
  }

  #chatbot-button:hover {
    background-color: #0056b3;
  }


  #chatbot-button:hover {
    background-color: #0056b3;
  }


  #chatbox-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    height: auto;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;

    border-radius: 15px;
  }

  #chatbox {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease-in-out;
    background-color: white;
    border-radius: 10px;
    z-index: 1000;
  }

  .closed #chatbox {
    height: 0;
  }

  .open #chatbox {
    height: 400px;

  }

  #chat-messages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
  }

  #typingIndicator {
    display: none;
    margin-left: 10px;
  }

  .typing-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #007BFF;
    border-radius: 50%;
    margin-right: 2px;
    animation: typing-dot-animation 1s infinite;
  }

  @keyframes typing-dot-animation {

    0%,
    20%,
    40% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  .chat-header {
    background-color: #e89747;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .close-button {
    cursor: pointer;
  }

  #userInput {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ddd;
  }

  #inputMessage {
    flex-grow: 1;
    padding: 5px;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
  }

  #sendMessage {
    background-color: #e89747;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
  }

  @keyframes blink {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  #blinkText {
    animation: blink 1s infinite;
  }

  #blinkTe {
    animation: blink 1s infinite;
  }

  .message.bot {
    background-color: #f0f0f0;
    color: #333;
    border-radius: 20px 20px 20px 0;
    padding: 10px;
    margin: 10px;
    max-width: 70%;
    float: left;
    clear: both;
    position: relative;
  }

  .message.bot::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #f0f0f0 transparent transparent;
  }

  .message.user {
    background-color: #0074e4;
    color: #fff;
    border-radius: 20px 20px 0 20px;
    padding: 10px;
    margin: 10px;
    max-width: 70%;
    float: right;
    clear: both;
    position: relative;
  }

  .message.user::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-width: 10px 0 0 10px;
    border-style: solid;
    border-color: transparent transparent transparent #0074e4;
  }