.elt-wait-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f9f6fe 0%, #e6e6e6 100%);
    color: #1f4f9b;
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    animation: eltFadeIn 0.4s ease;
    margin-left: 5px;
}

@keyframes eltFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.elt-wait-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.elt-wait-icon {
    font-size: 18px;
    animation: eltRotate 2s linear infinite;
    flex-shrink: 0;
}

@keyframes eltRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.elt-wait-text {
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}

.elt-wait-counter {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 2px;
}

.elt-wait-counter.elt-pulse {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
    .elt-wait-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-left: 3px;
    }
    .elt-wait-icon {
        font-size: 16px;
    }
    .elt-wait-text {
        font-size: 11px;
    }
    .elt-wait-counter {
        font-size: 11px;
        padding: 1px 6px;
        min-width: 20px;
    }
}
