/* Team Role Badge Styles */
.status-badge.owner {
    background-color: rgba(255, 215, 0, 0.15);
    color: #FF8C00;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.status-badge.agent {
    background-color: rgba(255, 215, 0, 0.15);
    color: #FF8C00;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.status-badge.investor {
    background-color: rgba(255, 215, 0, 0.15);
    color: #FF8C00;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Team Role Filter Styles */
.team-role-filter {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.team-role-filter button {
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.2s;
    background-color: #1a1a1a;
    border: 1px solid #272727;
}

.team-role-filter button.active {
    background-color: #272727;
}

.team-role-filter button.all {
    color: #e0e0e0;
}

.team-role-filter button.all.active {
    color: #ffffff;
    border-color: #4a4a4a;
}

.team-role-filter button.owner {
    color: #FF8C00;
}

.team-role-filter button.owner.active {
    background-color: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.team-role-filter button.agent {
    color: #4fc3f7;
}

.team-role-filter button.agent.active {
    background-color: rgba(79, 195, 247, 0.15);
    border-color: rgba(79, 195, 247, 0.3);
}

.team-role-filter button.investor {
    color: #69f0ae;
}

.team-role-filter button.investor.active {
    background-color: rgba(105, 240, 174, 0.15);
    border-color: rgba(105, 240, 174, 0.3);
}