.main-container {
  height: 100vh;
  width: 100vw;
}

.chat-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  transition: all 0.3s ease;
  /* height: 800px;
    width: 600px; */
  height: 650px;
  width: 500px;
  z-index: 1001;
}

.chat-container.hidden {
  transform: translateY(100%);
  opacity: 0;
}

.chat-container.visible {
  transform: translateY(0);
  opacity: 1;
}

.chat-container.fullscreen {
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  padding: 20px;
}

body.chat-expanded .chat-button {
  display: none;
}

.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 1002;
}

.chat-button:hover {
  background-color: #0056b3;
}

.message-display {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 8px;
  box-sizing: border-box;
  display: flex;
  gap: 8px;
}

.message-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #e9ecef;
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.message-column h2 {
  margin-top: 0;
  font-size: 16px;
  color: #495057;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.messages {
  flex-grow: 1;
  overflow-y: auto;
}

.message {
  background-color: transparent;
  padding: 8px 0;
  margin: 4px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 14px;
  color: #495057;
}

.message-button {
  background-color: #f3f4f6;
  padding: 8px 12px;
  margin: 4px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  display: block;
  font-size: 14px;
  color: #495057;
}

.message-button:hover {
  background-color: #e9e9e9;
}
