html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Chừa chỗ ở đáy trang cho bong bóng chat neo cố định, nếu không nó sẽ
   đè lên nội dung nằm sát đáy — rõ nhất là thanh phân trang của các bảng. */
main {
  padding-bottom: 72px;
}

/* ----- Khung chat tư vấn ----- */
#chatbot-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
}

#chatbot-toggle {
  border-radius: 24px;
  padding: 8px 20px;
}

#chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 52px;
  width: 340px;
  max-width: calc(100vw - 40px);
}

#chatbot-messages {
  height: 320px;
  overflow-y: auto;
  background-color: #f8f9fa;
  padding: 10px;
  font-size: 0.9rem;
}

.chatbot-msg {
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 8px;
  max-width: 90%;
}

.chatbot-msg-bot {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
}

.chatbot-msg-nguoidung {
  background-color: #cfe2ff;
  margin-left: auto;
  text-align: right;
}

.chatbot-chip {
  font-size: 0.75rem;
}