/* All Cars Filter Bar */

.filter-type-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    border: 1.5px solid #e5e7eb;
    background: #ffffff;
    color: #4b5563;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.filter-type-btn:hover {
    border-color: #EC1C24;
    color: #EC1C24;
}

.filter-type-btn.active {
    background: #EC1C24;
    border-color: #EC1C24;
    color: #ffffff;
}