
/* Dealer Loading Animation */
.dealer-loading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 24px;
    padding-left: 0;
}

.dealer-loading .dots {
    display: flex;
    gap: 4px;
}

.dealer-loading .dot {
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    animation: dot-bounce 1.4s infinite ease-in-out both;
}

.dealer-loading .dot:nth-child(1) { animation-delay: -0.32s; }
.dealer-loading .dot:nth-child(2) { animation-delay: -0.16s; }
.dealer-loading .dot:nth-child(3) { animation-delay: 0s; }

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