/* Chat widget custom styles */

#chat-toggle {
  /* already styled inline, but ensure smooth hover */
  transition: transform 0.2s ease, background-color 0.2s ease;
}
#chat-toggle:hover {
  transform: scale(1.1);
}

.chat-box {
  /* Already styled inline, ensure box shadow and smooth transition */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-header {
  font-size: 1rem;
  text-align: center;
}

.chat-messages {
  font-size: 0.9rem;
}

.chat-form input {
  font-size: 0.9rem;
}

.chat-form button {
  font-size: 0.9rem;
}
