.tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tags .tag {
    background-color: var(--bs-bg-gray);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.tags .tag.new {
    background-color: #e3f2fd;
    color: #1976d2;
}

.tags .tag.regular {
    background-color: #e8f5e9;
    color: #388e3c;
}

.tags .tag.vip {
    background-color: #fff3e0;
    color: #f57c00;
}

.tags .tag.inactive {
    background-color: #f5f5f5;
    color: #9e9e9e;
}