
#ama-fortune-floating {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}
#ama-fortune-toggle {
  background-color: #d4a373;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
#ama-fortune-popup {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 350px;
  height: 450px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  overflow: hidden;
}
#ama-fortune-header {
  background-color: #6f4e37;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#chat-window {
  padding: 10px;
  height: 330px;
  overflow-y: auto;
}
.message {
  margin: 5px 0;
  padding: 8px 10px;
  border-radius: 8px;
}
.bot-message {
  background: #f2e8dc;
  align-self: flex-start;
}
.user-message {
  background: #d4a373;
  color: white;
  align-self: flex-end;
}
#chat-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ccc;
}
#chat-input input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#send-button {
  margin-left: 10px;
  background: #6f4e37;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
}
