#chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

#chat-icon:hover {
  background: #000000;
}

#chat-icon img {
  width: 28px;
  height: 28px;
}

#chat-box {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid #ccc;
  width: 250px;
  padding: 10px;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 32px;
  direction: rtl;
  font-family: 'Vazir', sans-serif;
  color: white;
}

#chat-close {
  position: absolute;
  top: 6px;
  right: 6px;
  color: #ccc;
  background: transparent;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  user-select: none;
  font-weight: normal;
  transition: color 0.3s ease;
}

#chat-close:hover {
  color: #fff;
}

#chat-message::placeholder {
  color: white;
  opacity: 1;
}

#chat-box textarea {
  width: 100%;
  height: 100px;
  resize: none;
  font-family: inherit;
  padding: 5px;
  border-radius: 10px;
  background: transparent;
  color: white !important;
  border: 1px solid #ccc;
  margin-top: 30px;
}
#chat-box textarea:hover {
  width: 100%;
  height: 100px;
  resize: none;
  font-family: inherit;
  padding: 5px;
  border-radius: 10px;
  background: transparent;
  color: white !important;
  border: 1px solid #ccc;
  margin-top: 30px;
}

#chat-box button#chat-send {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 6px 12px;
  margin-top: 5px;
  cursor: pointer;
  width: 100%;
  border-radius: 32px;
}

#chat-status {
  margin-top: 5px;
  font-size: 14px;
  color: #ffffff;
}
