.zev-form-counter {
    font-size: 18px;
    color: #b36d00;
    padding: 10px;
    font-weight: bold;
    border-left: 4px solid #b36d00;
    background: #fff9f1;
    margin: 10px 0;
    transition: all 0.3s ease-in-out;
}

.zev-form-counter.zev-highlight {
    color: red;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    animation: blink 1.5s infinite;
    padding: 10px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
