body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-y: scroll;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgb(193, 165, 108);
    color: white;
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#chat-container.hidden {
    display: none;
}

#userMessage {
    width:auto;
    min-width: 200px;
}

.chatbox {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    height: 300px;
    border-bottom: 1px solid #ddd;
    max-height: 400px;
    display: flex;
    flex-direction: column;
}

.user-message {
    background-color: rgb(193, 165, 108);
    color: #ffff;
    padding: 10px;
    border-radius: 8px;
    margin: 5px 0;
    max-width: 70%;
    align-self: flex-end;
}

.bot-message {
    background-color: #fff;
    color: #000;
    padding: 10px;
    border-radius: 8px;
    margin: 5px 0;
    max-width: 70%;
    align-self: flex-start;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

button {
    background-color: rgb(193, 165, 108);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(155, 129, 77);
}

.chat-input-container {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
    justify-content: space-between;
}

/* KEYFRAMES */
@keyframes pulse {
    from {
      opacity: 1;
      transform: scale(1);
    }
    to {
      opacity: .25;
      transform: scale(.75);
    }
  }
  
  /* PULSE BUBBLES */
  .pulse-container {
    width: 50px;
    height: 30px;
    margin-left: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .pulse-bubble {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(193, 165, 108);
  }
  
  .pulse-bubble-1 {
    animation: pulse .4s ease 0s infinite alternate;
  }
  
  .pulse-bubble-2 {
    animation: pulse .4s ease .2s infinite alternate;
  }
  
  .pulse-bubble-3 {
    animation: pulse .4s ease .4s infinite alternate;
  }
  