/* =========================================================
   FOOTER
========================================================= */

.chat-footer-note {
  padding: 12px 16px 16px;

  background: #ffffff;
  border-top: 1px solid #eef4fa;

  color: #7a8ba0;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

/* =========================================================
   TYPING
========================================================= */

.typing-label {
  color: var(--hcb-muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.typing {
  display: flex;
  gap: 5px;
  align-items: center;
}

.typing span {
  width: 7px;
  height: 7px;

  background: var(--hcb-blue-700);
  border-radius: 999px;

  display: block;

  animation: hcbTyping 1.1s infinite ease-in-out;
}

.typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes hcbTyping {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* =========================================================
   FEEDBACK
========================================================= */

.chat-feedback {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e8eef4;
}

.chat-feedback-title {
  margin-bottom: 8px;

  color: var(--hcb-muted);
  font-size: 12px;
  font-weight: 800;
}

.chat-feedback-btn {
  margin-right: 6px;

  border: 1px solid #cbdbea;
  border-radius: 999px;

  background: #ffffff;
  color: var(--hcb-text);

  padding: 7px 12px;

  font-size: 12px;
  font-weight: 800;
  cursor: pointer;

  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    transform 0.16s ease;
	
	  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.chat-feedback-btn:hover,
.chat-feedback-btn:focus,
.chat-feedback-btn:focus-visible {
  background: linear-gradient(135deg, #f2fbff 0%, #dff5ff 100%) !important;
  border-color: #86d8ff !important;
  color: #075fa8 !important;

  outline: none !important;

  box-shadow:
    0 8px 18px rgba(14, 165, 245, 0.13),
    0 0 0 2px rgba(103, 216, 255, 0.24) !important;

  transform: translateY(-10.13),
    0 0 0 2px rgba(103, 216, 255, 0.24) !important;

  transform: translateY(-1px);
}

.chat-feedback-btn:active {
  background: linear-gradient(135deg, #e8f8ff 0%, #d2efff 100%) !important;
  border-color: #6fd0ff !important;
  color: #075fa8 !important;

  outline: none !important;

  box-shadow:
    0 5px 12px rgba(14, 165, 245, 0.14),
    0 0 0 2px rgba(103, 216, 255, 0.28) !important;

  transform: translateY(0) scale(0.98);
}
.chat-feedback-saved {
  color: var(--hcb-green-dark);
  font-size: 12px;
  font-weight: 800;
}

.chat-feedback-error {
  color: #b42318;
  font-size: 12px;
  font-weight: 800;
}
