.loading-container{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh}.loading-dots{display:flex;gap:8px;margin-bottom:8px}.loading-dots span{width:12px;height:12px;background-color:orange;border-radius:50%;animation:pulse 1s ease-in-out infinite}.loading-dots span:nth-child(2){animation-delay:.2s}.loading-dots span:nth-child(3){animation-delay:.4s}@keyframes pulse{0%,to{opacity:.3;transform:scale(.8)}50%{opacity:1;transform:scale(1)}}.loading-container p{color:orange;font-size:16px}