/* body {
  margin: 0;
  padding: 0;
  background-color: #edf0f6;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  padding-top: 6rem;
} */


.chat-button {
  position: fixed;
  bottom: 0; 
  margin: 24px 0 24px 12px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--sisam-gray-200);
  border-radius: 50%;
  z-index: 1004;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) { 
    .chat-button {
        margin-left: 24px;
    }
}

.chat-button:hover {
  background-color: var(--sisam-gray-300);
  cursor: pointer;
}

.chat {
  display: none;
  position: fixed;
  bottom: 0;  
  z-index: 1005;
  width: auto;
  max-width: 450px;
  height: auto;
  max-height: 50vh;
  margin: 0 20px;
  flex-direction: column;
  border-radius: 15px;
  background-color: #ffffff;  
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--sisam-gray-200);
  border-radius: 15px 15px 0 0;
  width: 100%;
}

.chat-header-title {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 20px;
}

.chat-title {
  margin-left: 5px;
  font-weight: bold;
  /* color: #ffffff; */
}

.chat-icon{
  width: 13%;
  border-radius: 50%;
  margin: 0;
}

.close {
  margin-right: 20px;
  /* color: #ffffff; */
  justify-content: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  text-decoration: none;
  cursor: pointer;
}

.chat-body{
  display: 1;
  flex-direction: column;
  background-color: #ffffff;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  max-height: 50vh;
  overflow-y: auto;
  width: 100%;
  box-sizing: border-box;
}

.chat-text{
  width: 100%;
  margin-bottom: 1rem;
}

.chat-bot-div{
  display: flex;
  justify-content: flex-start;
  align-items:end ;
  width: 100%;
  margin-bottom: 10px;
}

.chat-text-bot {
  margin-left: 15px;
  font-size: 1.1rem;
  background-color: #edf0f6;
  padding: 2%;
  border-radius: 10px;
  border-bottom-left-radius: 0px;
  width: auto;
  word-break: break-word;
  max-width: 80%;
  justify-items: left;
  justify-self: left;
  text-align: left;
}

.chat-text-user {
  justify-items: right;
  justify-self: right;
  flex-wrap: wrap;
  word-break: break-word;
  font-size: 1.1rem;
  margin-right: 10px;
  background-color: #b8c3dd;
  padding: 2%;
  border-radius: 10px;
  border-bottom-right-radius: 0px;
  width: auto;
  max-width: 80%;
  text-align: left;
}

/* .main {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
  font-family: Arial, sans-serif;
} */

.chat-input-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0 10px 1rem;
  background-color: #ffffff;  
}

.chat-label {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #000000;
}

.chat-input {
  resize: none;
  width: 90%;
  font-size: 1.1rem;
  padding: 10px;
  border: none;
  height: 40px;
  border-radius: 5px;
  margin-right: 10px;
  background-color: #edf0f6;
}

.chat-send {
  background-color: var(--sisam-gray-200);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-send img {
  width: 20px;
  height: 20px;
}
