.loading-container{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:20px}.loading-bars{display:flex;align-items:flex-end;gap:4px}.bar{width:4px;background-color:#333;border-radius:2px;animation:loading 1s ease-in-out infinite}.bar:first-child{height:20px;animation-delay:0s}.bar:nth-child(2){height:20px;animation-delay:.1s}.bar:nth-child(3){height:20px;animation-delay:.2s}.bar:nth-child(4){height:20px;animation-delay:.3s}@keyframes loading{0%{transform:scaleY(.5)}50%{transform:scaleY(1)}to{transform:scaleY(.5)}}.loading-text{margin-top:12px;color:#333;font-size:14px}