.screen-overlay {
visibility: hidden;
}
.htmx-request {
visibility: visible;
opacity: 0.7;
}
.typing-dot {
display: inline-block;
width: 8px;
height: 8px;
margin: 0 2px;
background-color: #60A5FA;
border-radius: 50%;
animation: typing-bounce 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) {
animation-delay: 0s;
}
.typing-dot:nth-child(2) {
animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
animation-delay: 0.4s;
}

@keyframes typing-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}
