#callAssistantContainer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#callAssistantIcon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #2c7be5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

#callAssistantIcon:hover {
  transform: scale(1.1);
}

#callAssistantIcon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

#callAssistantPopup {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 300px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 15px;
  display: none;
}

#callAssistantPopup:before {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 20px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: white transparent transparent;
}

.popup-content p {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.4;
}

.assistant-btn {
  background-color: #2c7be5;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin: 5px 0 15px;
  font-size: 14px;
  transition: background-color 0.3s;
}

.assistant-btn:hover {
  background-color: #1a68d1;
}

.privacy-notice {
  font-size: 11px !important;
  color: #666;
  margin-top: 15px !important;
}

.privacy-notice a {
  color: #2c7be5;
  text-decoration: none;
}

.privacy-notice a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
}

.hidden {
  display: none;
}