.cf-713-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.cf-713-item {
    background: transparent; /* Explicitly set to transparent to prevent theme overrides */
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: left;
}

.cf-713-item:hover,
.cf-713-item:focus {
    outline: none;
    background-color: transparent; /* Force transparent background on hover unless overridden by inline styles */
}

/* Ensure active state doesn't have a background unless specified */
.cf-713-item.active {
    background-color: transparent;
}