body {
    font-family: Inter, sans-serif;
}


#chatPanel {

  transition:
    width 0.25s ease,
    height 0.25s ease,
    opacity 0.25s ease;
}

#chatPanel.collapsed {

  width: 340px !important;
  height: 88px !important;
  overflow: hidden;
}


/* make mobile fullscreen */
@media (max-width: 768px) {

  html,
  body {

    height: 100%;
  }

  #chatPanel {

    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
  }

  #messages {

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* minimized launcher becomes full-width mobile dock */
  #chatLauncher {  

    bottom: 12px !important;
    right: 12px !important;
    left: 12px !important;
    justify-content: center;
  }
}

