.filter-tag {
    background-color: #ffffffcc; /* White with 80% opacity */
    color: #007B8A; /* Primary color */
    padding: 10px 16px;
    border-radius: 9999px; /* Full rounded */
    font-size: 0.875rem; /* Small text */
    font-weight: 500; /* Medium font weight */
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.filter-tag.active {
    background-color: #007B8A; /* Primary color */
    color: #ffffff; /* White text */
}