#chat {
  max-width: 800px;
  height: 600px;
  overflow-y: auto;
  margin: 0 auto 10px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 600px) {
  #chat {
    padding: 20px 5px;
  }
}
.message {
  padding: 10px 15px;
  border-radius: 20px;
  max-width: 80%;
  line-height: 1.4;
}
.bot {
  background: #e0e0e0;
  align-self: flex-start;
  position: relative;
  margin-left: 50px;
}
@media (max-width: 600px) {
  .bot {
    margin-left: 35px;
  }
}

.bot::after {
  content: "";
  position: absolute;
  bottom: -0px;
  left: -50px;
  width: 45px;
  height: 45px;
  border: 1px solid white;
  border-radius: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('/includes/jumi/misc/pricingAssistant/img/skillbert.png');
  z-index: 1;
}
@media (max-width: 600px) {
  .bot::after {
    left: -35px;
    width: 30px;
    height: 30px;
  }
}

.user {
  background: #0078d7;
  color: white;
  align-self: flex-end;
}
.options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 5px;
}
.options button {
  padding: 8px 14px;
  border: none;
  border-radius: 10px;
  background: #0078d7;
  color: white;
  cursor: pointer;
}
input.number-input {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 5px;
  width: 100%;
}

button.send-btn {
  margin-top: 6px;
  padding: 8px 14px;
  background: #0078d7;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
#reset-chat-btn {
  display: block;
  margin: 0 auto;
  padding: 8px 14px;
  border: none;
  border-radius: 10px;
  background: #0078d7;
  color: white;
  cursor: pointer;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.2s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}