/* Assistant Box Styling */
.assistant-box {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 320px;
  background: rgb(48, 2, 95);
  border: 1px solid #ccc;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: fadeIn 0.3s ease-in-out;
  z-index: 999;
}

.assistant-box.show { display: flex; }
.assistant-box.hidden { display: none; }

.assistant-header {
  background: var(--primary-color, #007bff);
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.assistant-body {
  padding: 15px;
}

.prompt-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.prompt {
  background: var(--primary-color, #007bff);
  color: white;
  border: none;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.prompt:hover { background: #0056b3; }

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
