.chat-container {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.message {
  background-color: #A39661;
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  margin-bottom: 25px;
  width: fit-content;
  max-width: 80%;
}

.message.user {
  border-radius: 25px;
  background-color: #ffffff;
  color: black;
  border-style: solid;
  border-color: #A39661;
  margin-left: auto;
}

#input-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 60px;
  border-color: #A39661;
  border-style: solid;
  box-shadow: 0px 0px 15px 0px #A39661;

  position: relative;
  padding: 10px;
}

#input-area #ai-chat-input {
    width: 100%;
    height: auto !important;
    /* height: 57px !important; */
    margin-left: 10px;
    border: none !important;
    /* margin-top: 18px; */
    background-color: unset !important;
    width: calc(100% - 80px);
    max-height: 100px;
    border-radius: 25px;
    /* padding: 10px; */
    /* line-height: 27px; */
    margin-bottom: -5px;
    margin-top: 10px;
}

#input-area #ai-chat-input:focus {
  outline: none; 
  border: 1px solid transparent; 
}

#chat-submit {
    background-color: #A39661;
    position: absolute;
    right: 38px;
    border-radius: 25px;
    max-height: 32px;
    font-size: 12px;
    padding: 10px;
    color: white;
    border: none;
    cursor: pointer;
}

.bot {
    background-color: #A39661;
    border-radius: 20px;
    padding: 5px;
}

.message-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.loading-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: -23px;
  margin-left: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: #333;
  border-radius: 50%;
  animation: dotFlashing 1s infinite linear alternate;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotFlashing {
  0% {
    background-color: #333;
  }
  50%, 100% {
    background-color: #ccc;
  }
}

#wp-floating-chat-container{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.wp-floating-chat-header{

  background-color: #A39661;
  color: white;
  padding: 18px;
  border-radius: 20px 20px 0px 0px;
  cursor: pointer;
}

#wp-floating-chat-content{
  display: none;
  background-color: #f1f1f1; 
  padding: 10px; 
  border: 1px solid #ccc; 
  border-radius: 0 0 5px 5px;

  bottom: 20px;
  right: 137px;
  position: fixed;
  width: 400px;
}

#wp-floating-chat-messages{

  height: 300px;
  overflow-y: auto;
  background-color: white;
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 5px;
  padding: 10px;
}

#wp-floating-chat-input{

    width: calc(100% - 20px) !important;
    margin-bottom: 10px;
    border: none !important;
    border-radius: 25px;
    /* padding: 10px; */
    padding-left: 16px;
    padding-top: 12px;
    box-shadow: 0px 0px 5px 0px #A39661;
    outline: none;
}

#wp-floating-chat-send{

  width: 100%;
  padding: 10px;
  background-color: #A39661;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}