/* Accessibility fixes for text contrast issues */

/* Chat widget text fixes */
.chat-message p {
  color: #374151 !important; /* gray-700 for better contrast */
}

.chat-timestamp {
  color: #6b7280 !important; /* gray-500 for better contrast */
}

.chat-input::placeholder {
  color: #9ca3af !important; /* gray-400 for better contrast */
}

.chat-header h3 {
  color: #111827 !important; /* gray-900 for better contrast */
}

.chat-cta-button {
  color: #059669 !important; /* green-600 for better contrast */
  background-color: #ffffff !important;
}

/* Ensure chat messages have good contrast */
[class*="text-gray"] {
  color: #374151 !important;
}

[class*="bg-white"] [class*="text-"],
[class*="bg-gray-50"] [class*="text-"] {
  color: #111827 !important;
}
