#chat-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #0b0d1f url('assets/images/chat_icon.png') center center no-repeat;
  background-size: 24px 24px;
  border-radius: 50%;
  box-shadow: 0 0 12px #c0d9f9;
  cursor: pointer;
  z-index: 1000;
}

#chat-box {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background-color: #08030b;
  color: #c0d9f9;
  border: 1px solid #c0d9f9;
  border-radius: 10px;
  padding: 15px;
  display: none;
  z-index: 1000;
  box-shadow: 0 0 15px #c0d9f9;
}

#chat-box input,
#chat-box textarea {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
}

#chat-box button {
  width: 100%;
  padding: 10px;
  background-color: #c0d9f9;
  color: #08030b;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
