.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 3px;
  width: 240px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  font-family: Arial, sans-serif;
  flex-direction: column;
  z-index: 9999;
}

.chat-header {
  background-color: rgb(97, 97, 234);
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  text-align: center;
}

.chat-messages {
  height: 250px;
  overflow-y: auto;
  padding: 10px;
  background: #f9f9f9;
}

.chat-input {
  display: flex;
  border-top: 1px solid #ddd;
}

.chat-input input {
  flex: 1;
  padding: 5px;
  border: none;
  outline: none;
}

.chat-input button {
  padding: 10px;
  background: rgb(97, 97, 234);
  color: white;
  border: none;
  cursor: pointer;
}

.close {
  font-size: 2rem;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  color: white;
}

.chat-widget .chat-messages p {
  margin: 8px 0;
  padding: 4px 8px;
  border-radius: 4px;
  color: black;
}
