#djamila-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #5b2739;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2147483647;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: transform .25s ease;
}

#djamila-btn:hover {
  transform: scale(1.08);
}

#djamila-btn img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

#djamila-box {
  position: fixed;
  bottom: 140px;
  right: 24px;
  width: 340px;
  height: 480px;
  background: #fff;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 2147483647;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

#djamila-header {
  background: #5b2739;
  color: #fcb900;
  padding: 16px;
  font-weight: bold;
  text-align: center;
}

#djamila-messages {
  flex: 1;
  padding: 14px;
  background: #fafafa;
  overflow-y: auto;
}

.bubble.bot {
  background: #5b2739;
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  margin-bottom: 10px;
  max-width: 80%;
}

.bubble.user {
  background: #fcb900;
  color: #000;
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
  margin-bottom: 10px;
  max-width: 80%;
  margin-left: auto;
}

#djamila-input {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #eee;
}

#djamila-input input {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

#djamila-input button {
  background: #5b2739;
  color: #fcb900;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: bold;
  cursor: pointer;
}
