.chats-form {
  border-radius: 1px;
  overflow-y: scroll;
  transition: 0.2s;
}

.chats-form{
  height: 429px;
}

.widget-form {
  position: fixed;
  display: none;
  overflow: hidden; 
  bottom: 8px;
  right: calc(3% + 355px);
  width: min(350px, 100vw);
  height: 554px;
  background: #FFFFFF;
  border-radius: 18px 18px 18px 18px;
  box-shadow: 0px 0px 7px 0px #525252;
}

.widget-form-container {
  height: 100%;
}

#form-close {
  margin-right: 15px;
}

.sender-msg-form-box {
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px;
  word-wrap: break-word;
  color: #272727;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sender-msg-form-box form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.sender-msg-form-box h6 {
  display: none;
}

.sender-msg-form-box form label {
  padding-bottom: 5px;
  font-weight: 600;
  color: #555;
}

.sender-msg-form-box form input[type="text"], input[type="password"] {
  max-width: 300px;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.sender-msg-form-box form input[type="text"]:focus, input[type="password"]:focus {
  border-color: #ff3d00;
  outline: none;
}

.submit-button {
  margin-top: 15px;
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid #006400;
  background-color: #006400;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #d4fae3;
}

.open-form-button {
  padding: 3px 5px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
}

.bot-link-button-div {
  margin-top: 4px;
}

.bot-link-button {
  color: white;
  padding: 6px 6px;
  margin-top: 5px;
  margin-bottom: 3px;
  background: #4c7485;
  border: none;
  border-radius: 4px;
  text-decoration: none;
}

.bot-link-button:hover {
  background-color: white;
  color: #0a58ca;
}
