
/* NiteFade mobile chat history fix */
@media (max-width: 760px) {
  .nf-chat-box {
    height: 190px !important;
    max-height: 190px !important;
    overflow-y: auto !important;
    padding: 12px !important;
    border-radius: 16px !important;
    background: #f5f5f7 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .nf-chat-message {
    display: block !important;
    max-width: 86% !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    font-size: 0.86rem !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    word-break: normal !important;
  }

  .nf-chat-message.bot {
    align-self: flex-start !important;
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid rgba(0,0,0,.08) !important;
  }

  .nf-chat-message.user {
    align-self: flex-end !important;
    background: #2f8cff !important;
    color: #ffffff !important;
  }

  .nitefade-support-panel-content {
    max-height: calc(100vh - 270px) !important;
    overflow-y: auto !important;
  }
}
