/* Assistant widget styles */
.assistant-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  padding: 12px 24px;
  background-color: #2196F3;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.assistant-toggle:hover {
  background-color: #1976D2;
}

.assistant-container {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 400px;
  height: 600px;
  z-index: 999;
  display: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
}

.assistant-container.show {
  display: block;
}

.assistant-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .assistant-container {
    width: calc(100vw - 40px);
    height: calc(100vh - 120px);
    bottom: 70px;
    right: 20px;
  }
}
