.floating-chat-container {
  /* background-color: black; */
  /* background-color: #363739; */
  background-color: transparent;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: sans-serif;
}

.hidden {
  display: none !important;
}

.chat-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #b85f06;
  color: white;
  font-size: 28px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.chat-fab:hover {
  transform: scale(1.1);
}

.chat-window {
  position: fixed;
  bottom: 90px; 
  right: 20px;
  width: 350px;
  height: 620px;
  background: black;
  border: 2px solid #323030;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  padding: 10px;
  background: black;
  color: white;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  user-select: none;
}

.close-btn {
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.close-btn:hover {
  background: rgba(255, 0, 0, 0.7);
}

.chat-body {
  flex: 1;
  background: #f9f9f9;
  padding: 0;
  display: flex;
  height: 75%; /* Ensures full container height */
  margin-bottom: -220px;
}

.chat-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}