.gabriella-wrapper {
  max-width: 600px;
  margin: 2rem auto;
  font-family: 'SF Pro Display', sans-serif;
  padding: 2rem;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.gabriella-chat {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  background: #f9f9f9;
}

.gabriella-message {
  margin: 0.5rem 0;
  padding: 0.8rem;
  border-radius: 10px;
  line-height: 1.4;
}

.gabriella-message.user {
  background: #d2f8d2;
  text-align: right;
}

.gabriella-message.bot {
  background: #e0e0e0;
  text-align: left;
}

.gabriella-form {
  display: flex;
  gap: 1rem;
}

.gabriella-input {
  flex: 1;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #ccc;
}
.back-button {
  align-self: flex-start;
  margin-bottom: 40px;
  margin-left: 20px;
  font-size: 14px;
  color: #2c2e27;
  text-decoration: none;
  background: #f0f0f0;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.3s;
}

.back-button:hover {
  background: #e0e0e0;
}