body {
  font-family: 'Poppins', sans-serif;
  background: #f0f4f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0px;
  padding: 0px;
}
.heading
{
    font-size: 10px;
    background-color: #343434;
    color: white;
    padding: 8px 0px 5px 15px;
    width: 100%;
}
.Asist
{
    width: 70px;
    overflow: hidden;
    object-fit: cover;
    display: flex;
    position: fixed;
    z-index: 999;
    bottom: 10px;
}
.Asist img
{
    width: 100%;
}
.chat-container 
{
  width: 400px;
  height: 720px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  display: none;
  position: fixed;
  z-index: 999;
  top: 5%;
  right: 10%;
  flex-direction: column;
}

.chat-box 
{
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}

.bot-message, .user-message 
{
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 80%;
  word-wrap: break-word;
}

.bot-message 
{
  background: #e5f1ff;
  align-self: flex-start;
}

.user-message 
{
  background: #0078ff;
  color: white;
  align-self: flex-end;
}

.options-container 
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #eee;
  background: #f9fafb;
}

.option-box 
{
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid #e0e0e0;
}

.option-box:hover 
{
  background: #0078ff;
  color: white;
}
@media screen and (max-width:480px)
{
  .chat-container 
  {
    max-width: 380px;
    margin-right: -20px;
  }
}