/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.writer-chat-dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}
.writer-chat-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0.4;
  animation: writer-chat-bounce 1.2s infinite ease-in-out;
}
.writer-chat-dots span:nth-child(2) { animation-delay: 0.15s; }
.writer-chat-dots span:nth-child(3) { animation-delay: 0.30s; }

@keyframes writer-chat-bounce {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
