/* app/assets/stylesheets/coach_chat.scss */

.coach-chat-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.coach-chat-panel {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 0.75rem;
}

@media (min-width: 768px) {
  .coach-chat-container {
    overflow-x: visible;
  }

  .coach-chat-panel {
    flex: 1 0 0;
    max-width: 50%;
  }
}
