/* Application Count Badge */
.application-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(248, 250, 252, 0.95);
    color: #6b7280;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    z-index: 2;
    transition: all 0.2s;
    opacity: 1;
}

.application-count svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.application-count-number {
    display: inline-block;
}

/* Green flash + pulse animation */
@keyframes successFlash {
    0% {
        background: rgba(248, 250, 252, 0.95);
        border-color: #e5e7eb;
        color: #6b7280;
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        background: rgba(220, 252, 231, 0.95);
        border-color: #86efac;
        color: #047857;
        transform: scale(1.08);
    }
    75% {
        transform: scale(1.05);
    }
    100% {
        background: rgba(248, 250, 252, 0.95);
        border-color: #e5e7eb;
        color: #6b7280;
        transform: scale(1);
    }
}

/* Number counter animation */
@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-2px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.application-count.updating {
    animation: successFlash 0.8s ease-in-out;
}

.application-count.updating .application-count-number {
    animation: countUp 0.6s ease-out;
}
        